From 7d975083c364a43c1837038541b513d241f21a13 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 17:15:40 -0400 Subject: [PATCH 01/71] Too Much Exception Handling! --- .../counterpartycore/lib/api/api_server.py | 29 +++++++------------ .../counterpartycore/lib/api/api_watcher.py | 2 +- .../counterpartycore/lib/api/wsgi.py | 2 ++ 3 files changed, 13 insertions(+), 20 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 95308b6e1f..92ce3fb5aa 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -422,28 +422,19 @@ def run_api_server(args, interrupted_value, server_ready_value): logger.error("Error in API Server: %s", e) finally: logger.trace("Shutting down API Server...") - try: - watcher.stop() - watcher.join() - except Exception as e: - logger.error("Error stopping API Watcher: %s", e) - if wsgi_server is not None: - try: - wsgi_server.stop() - except Exception as e: - logger.error("Error stopping WSGI Server: %s", e) + watcher.stop() + watcher.join() - if parent_checker is not None: - try: - parent_checker.join() - except Exception as e: - logger.error("Error joining ParentProcessChecker: %s", e) + wsgi_server.stop() + wsgi_server.join() - try: - APIDBConnectionPool().close() - except Exception as e: - logger.error("Error closing DB connection pool: %s", e) + logger.debug("Stopping ParentProcessChecker...") + parent_checker.stop() + parent_checker.join() + + logger.debug("Closing DB connection pool...") + APIDBConnectionPool().close() # This thread is used for the following two reasons: diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 2249eb887a..e8c343ab22 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -959,4 +959,4 @@ def stop(self): self.api_db.close() if self.ledger_db is not None: self.ledger_db.close() - logger.trace("API Watcher stopped") + logger.trace("API Watcher stopped.") diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 2c4709ee09..0e113a55c8 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -297,7 +297,9 @@ def __init__(self, app, args=None): self.server = WaitressApplication(self.app, self.args) def run(self): + logger.debug("Starting WSGI Server...") self.server.run() def stop(self): + logger.debug("Stopping WSGI Server...") self.server.stop() From 973b05e525e3f5235cef0495092b4d5a645728bc Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 17:53:26 -0400 Subject: [PATCH 02/71] Working --- .../counterpartycore/lib/api/api_server.py | 6 +- .../counterpartycore/lib/api/api_v1.py | 74 ++++++++++--------- .../counterpartycore/lib/api/api_watcher.py | 12 +-- .../counterpartycore/lib/check.py | 9 ++- 4 files changed, 57 insertions(+), 44 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 92ce3fb5aa..7e4af3ceb5 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -482,9 +482,9 @@ def stop(self): self.interrupted.value = 1 # stop the thread waiting_start_time = time.time() while self.process.is_alive(): - time.sleep(1) - logger.trace("Waiting 10 seconds for API Server to stop...") - if time.time() - waiting_start_time > 10: + time.sleep(0.5) + logger.trace("Waiting 2 seconds for API Server to stop...") + if time.time() - waiting_start_time > 2: logger.error("API Server did not stop in time. Terminating...") self.process.kill() break diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 2c02d12253..f0f249f33d 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -448,20 +448,19 @@ class APIStatusPoller(threading.Thread): """Perform regular checks on the state of the backend and the database.""" def __init__(self): - self.last_database_check = 0 threading.Thread.__init__(self) + self.last_database_check = 0 self.stop_event = threading.Event() - self.stopping = False - self.stopped = False self.db = None def stop(self): logger.info("Stopping API Status Poller...") - self.stopping = True + self.stop_event.set() if self.db is not None: self.db.close() self.db = None self.join() + logger.debug("API Status Poller stopped.") def run(self): logger.debug("Starting API Status Poller...") @@ -469,38 +468,45 @@ def run(self): self.db = database.get_db_connection(config.API_DATABASE, read_only=True, check_wal=False) interval_if_ready = 5 * 60 # 5 minutes - interval_if_not_ready = 60 # 1 minutes + interval_if_not_ready = 60 # 1 minute interval = interval_if_not_ready - while not self.stopping: # noqa: E712 - try: - # Check that backend is running, communicable, and caught up with the blockchain. - # Check that the database has caught up with bitcoind. - if ( - time.time() - self.last_database_check > interval - ): # Ten minutes since last check. - self.last_database_check = time.time() - if not config.FORCE and self.db is not None: - code = 11 - check_backend_state() - code = 12 - api_util.check_last_parsed_block(self.db, backend.bitcoind.getblockcount()) - interval = interval_if_ready - except (BackendError, exceptions.DatabaseError) as e: - interval = interval_if_not_ready - exception_name = e.__class__.__name__ - exception_text = str(e) - logger.debug("API Status Poller: %s", exception_text) - jsonrpc_response = jsonrpc.exceptions.JSONRPCServerError( - message=exception_name, data=exception_text - ) - CURRENT_API_STATUS_CODE = code - CURRENT_API_STATUS_RESPONSE_JSON = jsonrpc_response.json.encode() - else: - CURRENT_API_STATUS_CODE = None - CURRENT_API_STATUS_RESPONSE_JSON = None - if not self.stopping: - time.sleep(0.5) # sleep for 0.5 seconds + try: + while not self.stop_event.is_set(): + try: + # Check that backend is running, communicable, and caught up with the blockchain. + # Check that the database has caught up with bitcoind. + if ( + time.time() - self.last_database_check > interval + ): + self.last_database_check = time.time() + if not config.FORCE and self.db is not None: + code = 11 + check_backend_state() + code = 12 + api_util.check_last_parsed_block(self.db, backend.bitcoind.getblockcount()) + interval = interval_if_ready + except (BackendError, exceptions.DatabaseError) as e: + interval = interval_if_not_ready + exception_name = e.__class__.__name__ + exception_text = str(e) + logger.debug("API Status Poller: %s", exception_text) + jsonrpc_response = jsonrpc.exceptions.JSONRPCServerError( + message=exception_name, data=exception_text + ) + CURRENT_API_STATUS_CODE = code + CURRENT_API_STATUS_RESPONSE_JSON = jsonrpc_response.json.encode() + else: + CURRENT_API_STATUS_CODE = None + CURRENT_API_STATUS_RESPONSE_JSON = None + # Wait for up to 0.5 seconds or until the stop event is set + self.stop_event.wait(timeout=0.5) # Replaces time.sleep(0.5) + finally: + # Close the database connection in the thread + if self.db is not None: + self.db.close() + self.db = None + logger.debug("API Status Poller has stopped.") class APIServer(threading.Thread): diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index e8c343ab22..57c804988f 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -882,8 +882,8 @@ def __init__(self): self.api_db = None self.ledger_db = None apply_migration() - self.stopping = False - self.stopped = True + self.stopped = False + self.stop_event = threading.Event() # Add stop event self.api_db = database.get_db_connection( config.API_DATABASE, read_only=False, check_wal=False ) @@ -929,13 +929,13 @@ def __init__(self): def follow(self): refresh_xcp_supply(self.ledger_db, self.api_db) - while not self.stopping and not self.stopped: + while not self.stop_event.is_set(): last_parsed_event = None try: last_parsed_event = parse_next_event(self.api_db, self.ledger_db) except exceptions.NoEventToParse: logger.trace("API Watcher - No new events to parse") - time.sleep(1) + self.stop_event.wait(timeout=0.1) # let's not sync the mempool when parsing a block if time.time() - self.last_mempool_sync > 10 and ( last_parsed_event is None or last_parsed_event["event"] == "BLOCK_PARSED" @@ -952,7 +952,7 @@ def run(self): def stop(self): logger.info("Stopping API Watcher...") - self.stopping = True + self.stop_event.set() # Signal the stop event while not self.stopped: time.sleep(0.1) if self.api_db is not None: @@ -960,3 +960,5 @@ def stop(self): if self.ledger_db is not None: self.ledger_db.close() logger.trace("API Watcher stopped.") + + diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index b5638077ba..a97287bb93 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -912,12 +912,15 @@ class SanityError(Exception): pass -def asset_conservation(db): +def asset_conservation(db, stop_event): logger.debug("Checking for conservation of assets.") with db: supplies = ledger.supplies(db) held = ledger.held(db) for asset in supplies.keys(): + if stop_event.is_set(): + logger.debug("Stop event received. Exiting asset conservation check...") + return asset_issued = supplies[asset] asset_held = held[asset] if asset in held and held[asset] != None else 0 # noqa: E711 if asset_issued != asset_held: @@ -962,7 +965,9 @@ def check_change(protocol_change, change_name): explanation += f"as of block {protocol_change['block_index']}, the minimum version is " explanation += f"v{protocol_change['minimum_version_major']}.{protocol_change['minimum_version_minor']}.{protocol_change['minimum_version_revision']}. " explanation += ( - f"Reason: ‘{change_name}’. Please upgrade to the latest version and restart the server." + f"Reason: ' +{change_name} +'. Please upgrade to the latest version and restart the server." ) if util.CURRENT_BLOCK_INDEX >= protocol_change["block_index"]: raise VersionUpdateRequiredError(explanation) From db15c2f4a2fb6c2ae6c6e53dd39230d02431513f Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 18:11:49 -0400 Subject: [PATCH 03/71] Significant Cleanup to Thread Handling in API Server --- .../counterpartycore/lib/api/api_v1.py | 3 +- .../counterpartycore/lib/api/api_watcher.py | 46 +++++++++---------- 2 files changed, 24 insertions(+), 25 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index f0f249f33d..b977515ae7 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -499,8 +499,7 @@ def run(self): else: CURRENT_API_STATUS_CODE = None CURRENT_API_STATUS_RESPONSE_JSON = None - # Wait for up to 0.5 seconds or until the stop event is set - self.stop_event.wait(timeout=0.5) # Replaces time.sleep(0.5) + self.stop_event.wait(timeout=0.5) finally: # Close the database connection in the thread if self.db is not None: diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 57c804988f..0bac1c2ac0 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -650,7 +650,7 @@ def rollback_fairminters(api_db, event): cursor.execute(sql, event_bindings) -def parse_event(api_db, event, catching_up=False): +def parse_event(api_db, event, watcher, catching_up=False): if event["event"] in SKIP_EVENTS: event["insert_rowid"] = None insert_event(api_db, event) @@ -669,7 +669,7 @@ def parse_event(api_db, event, catching_up=False): insert_event(api_db, event) logger.event(f"API Watcher - Event parsed: {event['message_index']} {event['event']}") if event["event"] == "BLOCK_PARSED": - synchronize_mempool(api_db, api_db) + synchronize_mempool(api_db, api_db, watcher.stop_event) def catch_up(api_db, ledger_db, watcher): @@ -681,8 +681,8 @@ def catch_up(api_db, ledger_db, watcher): start_time = time.time() event_parsed = 0 next_event = get_next_event_to_parse(api_db, ledger_db) - while next_event and not watcher.stopping and not watcher.stopped: - parse_event(api_db, next_event, catching_up=True) + while next_event and not watcher.stop_event.is_set(): + parse_event(api_db, next_event, watcher, catching_up=True) event_parsed += 1 if event_parsed % 50000 == 0: duration = time.time() - start_time @@ -690,12 +690,12 @@ def catch_up(api_db, ledger_db, watcher): f"API Watcher - {event_parsed} / {event_to_parse_count} events parsed. ({format_duration(duration)})" ) next_event = get_next_event_to_parse(api_db, ledger_db) - if not watcher.stopping and not watcher.stopped: + if not watcher.stop_event.is_set(): duration = time.time() - start_time logger.info(f"API Watcher - Catch up completed. ({format_duration(duration)})") else: logger.info("API Watcher - Catch up completed.") - synchronize_mempool(api_db, api_db) + synchronize_mempool(api_db, api_db, watcher.stop_event) def apply_migration(): @@ -801,8 +801,8 @@ def gen_random_tx_index(event): return event -def synchronize_mempool(api_db, ledger_db): - if config.NO_MEMPOOL: +def synchronize_mempool(api_db, ledger_db, stop_event): + if config.NO_MEMPOOL or stop_event.is_set(): return logger.trace("API Watcher - Synchronizing mempool...") global MEMPOOL_SKIP_EVENT_HASHES # noqa: PLW0602 @@ -813,12 +813,15 @@ def synchronize_mempool(api_db, ledger_db): clean_mempool(api_db) cursor = api_db.cursor() for event in mempool_events: + if stop_event.is_set(): + logger.info("API Watcher - Stopping mempool synchronization due to stop event.") + break if event["event"] in SKIP_EVENTS + ["NEW_BLOCK", "BLOCK_PARSED"]: continue if event["tx_hash"] in MEMPOOL_SKIP_EVENT_HASHES: continue event_bindings = json.loads(event["bindings"]) - # edge case: asset alredy created in another confirmed tx + # edge case: asset already created in another confirmed tx if event["event"] == "ASSET_CREATION": existing_asset = fetch_one( api_db, @@ -882,7 +885,6 @@ def __init__(self): self.api_db = None self.ledger_db = None apply_migration() - self.stopped = False self.stop_event = threading.Event() # Add stop event self.api_db = database.get_db_connection( config.API_DATABASE, read_only=False, check_wal=False @@ -927,6 +929,12 @@ def __init__(self): cursor.close() self.last_mempool_sync = 0 + def run(self): + logger.info("Starting API Watcher...") + catch_up(self.api_db, self.ledger_db, self) + if not self.stop_event.is_set(): + self.follow() + def follow(self): refresh_xcp_supply(self.ledger_db, self.api_db) while not self.stop_event.is_set(): @@ -936,29 +944,21 @@ def follow(self): except exceptions.NoEventToParse: logger.trace("API Watcher - No new events to parse") self.stop_event.wait(timeout=0.1) - # let's not sync the mempool when parsing a block + if self.stop_event.is_set(): + break if time.time() - self.last_mempool_sync > 10 and ( last_parsed_event is None or last_parsed_event["event"] == "BLOCK_PARSED" ): - synchronize_mempool(self.api_db, self.ledger_db) + synchronize_mempool(self.api_db, self.ledger_db, self.stop_event) self.last_mempool_sync = time.time() - self.stopped = True - - def run(self): - logger.info("Starting API Watcher...") - self.stopped = False - catch_up(self.api_db, self.ledger_db, self) - self.follow() def stop(self): logger.info("Stopping API Watcher...") - self.stop_event.set() # Signal the stop event - while not self.stopped: - time.sleep(0.1) + self.stop_event.set() + self.join() if self.api_db is not None: self.api_db.close() if self.ledger_db is not None: self.ledger_db.close() logger.trace("API Watcher stopped.") - From 6cd8a8a4856de6bc6cc5a29bc97aab83e8323329 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 18:16:44 -0400 Subject: [PATCH 04/71] Tweaks --- counterparty-core/counterpartycore/server.py | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 67029f61ef..f81a1c2b2c 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -692,28 +692,23 @@ def __init__(self): self.last_check = 0 threading.Thread.__init__(self) self.db = None - self.stopped = False self.daemon = True - self.running = False + self.stop_event = threading.Event() def run(self): self.db = database.get_db_connection(config.DATABASE, read_only=True, check_wal=False) - while not self.stopped: - self.running = True + while not self.stop_event.is_set(): if time.time() - self.last_check > 60 * 60 * 12: try: - check.asset_conservation(self.db) + check.asset_conservation(self.db, self.stop_event) except check.SanityError as e: logger.error("Asset conservation check failed: %s" % e) _thread.interrupt_main() self.last_check = time.time() time.sleep(1) - self.running = False def stop(self): - self.stopped = True - while self.running: - time.sleep(0.1) + self.stop_event.set() if self.db: self.db.close() @@ -992,3 +987,4 @@ def bootstrap_progress(blocknum, blocksize, totalsize): f"Databases have been successfully bootstrapped to {ledger_database_path} and {api_database_path}.", "green", ) + From 7f5452449e7e45d02058726579aab3022f163756 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 18:32:55 -0400 Subject: [PATCH 05/71] Fix Debug Logging of Config --- .../counterpartycore/lib/check.py | 6 +----- counterparty-core/counterpartycore/server.py | 19 +++++++++---------- 2 files changed, 10 insertions(+), 15 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index a97287bb93..6d6c8e74ae 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -964,11 +964,7 @@ def check_change(protocol_change, change_name): explanation = f"Your version of {config.APP_NAME} is v{config.VERSION_STRING}, but, " explanation += f"as of block {protocol_change['block_index']}, the minimum version is " explanation += f"v{protocol_change['minimum_version_major']}.{protocol_change['minimum_version_minor']}.{protocol_change['minimum_version_revision']}. " - explanation += ( - f"Reason: ' -{change_name} -'. Please upgrade to the latest version and restart the server." - ) + explanation += (f"Reason: ' {change_name} '. Please upgrade to the latest version and restart the server.") if util.CURRENT_BLOCK_INDEX >= protocol_change["block_index"]: raise VersionUpdateRequiredError(explanation) else: diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index f81a1c2b2c..63554cf0c3 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -601,16 +601,6 @@ def initialise_config( 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 init_args = { @@ -722,6 +712,15 @@ def start_all(args): asset_conservation_checker = None db = None + # 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}") + try: # set signal handlers (needed for graceful shutdown on SIGINT/SIGTERM) signal.signal(signal.SIGINT, handle_interrupt_signal) From b5db5ddbf7455d735bd0d6b9f393f1c4faa708c2 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 18:40:45 -0400 Subject: [PATCH 06/71] Missing Import --- counterparty-core/counterpartycore/lib/api/api_watcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 0bac1c2ac0..f53332eac9 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -3,7 +3,7 @@ import os import time from random import randrange -from threading import Thread +import threading import apsw from counterpartycore.lib import blocks, config, database, exceptions, ledger @@ -878,7 +878,7 @@ def refresh_xcp_supply(ledger_db, api_db): cursor.execute("UPDATE assets_info SET supply = ? WHERE asset = 'XCP'", (xcp_supply,)) -class APIWatcher(Thread): +class APIWatcher(threading.Thread): def __init__(self): Thread.__init__(self) logger.debug("Initializing API Watcher...") From 7c9ae4cbdd21e0822010a74be6c3c42fe0a4a15b Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 18:42:12 -0400 Subject: [PATCH 07/71] Typo --- counterparty-core/counterpartycore/lib/api/api_watcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index f53332eac9..a9ff61ef3e 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -880,7 +880,7 @@ def refresh_xcp_supply(ledger_db, api_db): class APIWatcher(threading.Thread): def __init__(self): - Thread.__init__(self) + threading.Thread.__init__(self) logger.debug("Initializing API Watcher...") self.api_db = None self.ledger_db = None From ea3c3c90ba74491b7e3aa9cd0c59f93b79301439 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 18:51:36 -0400 Subject: [PATCH 08/71] Logging of Threading --- .../counterpartycore/lib/api/api_server.py | 16 ++++++++-------- .../counterpartycore/lib/api/api_v1.py | 12 ++++++------ .../counterpartycore/lib/api/api_watcher.py | 4 ++-- .../counterpartycore/lib/api/wsgi.py | 4 ++-- .../counterpartycore/lib/database.py | 2 +- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 7e4af3ceb5..478ea6f35e 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -400,7 +400,7 @@ def run_api_server(args, interrupted_value, server_ready_value): watcher = api_watcher.APIWatcher() watcher.start() - logger.info("Starting API Server...") + logger.info("Starting API Server process...") app = init_flask_app() wsgi_server = None @@ -416,12 +416,12 @@ def run_api_server(args, interrupted_value, server_ready_value): server_ready_value.value = 1 wsgi_server.run() except KeyboardInterrupt: - logger.trace("Keyboard Interrupt!") + logger.warning("Keyboard Interrupt!") except Exception as e: capture_exception(e) logger.error("Error in API Server: %s", e) finally: - logger.trace("Shutting down API Server...") + logger.info("Stopping API Server...") watcher.stop() watcher.join() @@ -429,11 +429,11 @@ def run_api_server(args, interrupted_value, server_ready_value): wsgi_server.stop() wsgi_server.join() - logger.debug("Stopping ParentProcessChecker...") + logger.info("Stopping ParentProcessChecker thread...") parent_checker.stop() parent_checker.join() - logger.debug("Closing DB connection pool...") + logger.info("Closing DB connection pool...") APIDBConnectionPool().close() @@ -452,7 +452,7 @@ def run(self): if self.interruped_value.value == 0: time.sleep(0.01) else: - logger.trace("Parent process is dead. Exiting...") + logger.debug("Parent process is dead. Exiting...") break self.wsgi_server.stop() except KeyboardInterrupt: @@ -478,7 +478,7 @@ def is_ready(self): return self.server_ready_value.value == 1 def stop(self): - logger.info("Stopping API Server...") + logger.info("Stopping API Server process...") self.interrupted.value = 1 # stop the thread waiting_start_time = time.time() while self.process.is_alive(): @@ -488,4 +488,4 @@ def stop(self): logger.error("API Server did not stop in time. Terminating...") self.process.kill() break - logger.trace("API Server stopped.") + logger.info("API Server process stopped.") diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index b977515ae7..986e59b218 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -454,16 +454,16 @@ def __init__(self): self.db = None def stop(self): - logger.info("Stopping API Status Poller...") + logger.info("Stopping API Status Poller thread...") self.stop_event.set() if self.db is not None: self.db.close() self.db = None self.join() - logger.debug("API Status Poller stopped.") + logger.info("API Status Poller thread stopped.") def run(self): - logger.debug("Starting API Status Poller...") + logger.info("Starting API Status Poller thread...") global CURRENT_API_STATUS_CODE, CURRENT_API_STATUS_RESPONSE_JSON # noqa: PLW0603 self.db = database.get_db_connection(config.API_DATABASE, read_only=True, check_wal=False) @@ -505,7 +505,7 @@ def run(self): if self.db is not None: self.db.close() self.db = None - logger.debug("API Status Poller has stopped.") + logger.info("API Status Poller stopped.") class APIServer(threading.Thread): @@ -520,7 +520,7 @@ def __init__(self, db=None): sentry.init() def stop(self): - logger.info("Stopping API Server v1...") + logger.info("Stopping API Server v1 thread...") if self.connection_pool: self.connection_pool.close() if self.server: @@ -528,7 +528,7 @@ def stop(self): self.join() def run(self): - logger.info("Starting API Server v1...") + logger.info("Starting API Server v1 thread...") app = flask.Flask(__name__) auth = HTTPBasicAuth() diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index a9ff61ef3e..0ac68572cf 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -930,7 +930,7 @@ def __init__(self): self.last_mempool_sync = 0 def run(self): - logger.info("Starting API Watcher...") + logger.info("Starting API Watcher thread...") catch_up(self.api_db, self.ledger_db, self) if not self.stop_event.is_set(): self.follow() @@ -953,7 +953,7 @@ def follow(self): self.last_mempool_sync = time.time() def stop(self): - logger.info("Stopping API Watcher...") + logger.info("Stopping API Watcher thread...") self.stop_event.set() self.join() if self.api_db is not None: diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 0e113a55c8..b30c8fc226 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -297,9 +297,9 @@ def __init__(self, app, args=None): self.server = WaitressApplication(self.app, self.args) def run(self): - logger.debug("Starting WSGI Server...") + logger.info("Starting WSGI Server thread...") self.server.run() def stop(self): - logger.debug("Stopping WSGI Server...") + logger.info("Stopping WSGI Server thread...") self.server.stop() diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index b7752113ce..39ed2104fe 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -240,7 +240,7 @@ def update_version(db): def vacuum(db): - logger.info("Starting database VACUUM. This may take awhile...") + logger.info("Starting database VACUUM... this may take a while!") cursor = db.cursor() cursor.execute("VACUUM") logger.info("Database VACUUM completed.") From e45924a7f28a649529ceb0663f70ea9acf52be76 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 19:00:03 -0400 Subject: [PATCH 09/71] Logging of Threading --- .../counterpartycore/lib/api/api_server.py | 4 ++-- counterparty-core/counterpartycore/lib/api/api_v1.py | 2 +- .../counterpartycore/lib/api/api_watcher.py | 2 +- .../counterpartycore/lib/backend/rsfetcher.py | 12 ++++++------ 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 478ea6f35e..5222ee1317 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -421,7 +421,7 @@ def run_api_server(args, interrupted_value, server_ready_value): capture_exception(e) logger.error("Error in API Server: %s", e) finally: - logger.info("Stopping API Server...") + logger.info("Stopping API Server threads...") watcher.stop() watcher.join() @@ -485,7 +485,7 @@ def stop(self): time.sleep(0.5) logger.trace("Waiting 2 seconds for API Server to stop...") if time.time() - waiting_start_time > 2: - logger.error("API Server did not stop in time. Terminating...") + logger.error("API Server process did not stop in time. Terminating...") self.process.kill() break logger.info("API Server process stopped.") diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 986e59b218..2e1ff4533e 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -505,7 +505,7 @@ def run(self): if self.db is not None: self.db.close() self.db = None - logger.info("API Status Poller stopped.") + logger.info("API Status Poller thread stopped.") class APIServer(threading.Thread): diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 0ac68572cf..43f19e9b4b 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -960,5 +960,5 @@ def stop(self): self.api_db.close() if self.ledger_db is not None: self.ledger_db.close() - logger.trace("API Watcher stopped.") + logger.info("API Watcher thread stopped.") diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 7cbe49010a..9c09e3ab9f 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -38,7 +38,7 @@ def __init__(self, indexer_config=None): self.lock = threading.Lock() def start(self, start_height=0): - logger.debug("Starting Prefetcher...") + logger.info("Starting RSFetcher thread...") try: self.config["start_height"] = start_height self.next_height = start_height @@ -86,7 +86,7 @@ def get_block(self): def get_prefetched_block(self): try: - logger.debug("Looking for Block in prefetch queue...") + logger.debug("Looking for block in prefetch queue...") while len(self.prefetch_queue) == 0: logger.trace("Prefetch queue is empty.") time.sleep(0.1) @@ -104,7 +104,7 @@ def get_prefetched_block(self): raise e def prefetch_blocks(self): - logger.debug("Starting prefetching blocks...") + logger.debug("Starting to prefetch blocks...") expected_height = self.next_height while not self.stopped: self.running = True @@ -142,7 +142,7 @@ def prefetch_blocks(self): except Exception as e: if str(e) == "Stopped error": logger.warning( - "RSFetcher found stopped due to an error. Restarting in 5 seconds..." + "RSFetcher thread found stopped due to an error. Restarting in 5 seconds..." ) time.sleep(5) self.restart() @@ -152,7 +152,7 @@ def prefetch_blocks(self): logger.debug("Prefetching blocks stopped.") def stop(self): - logger.info("Stopping prefetcher...") + logger.info("Stopping RSFetcher thread...") self.stopped = True try: if self.prefetch_task: @@ -171,7 +171,7 @@ def stop(self): finally: self.fetcher = None self.prefetch_task = None - logger.debug("Prefetcher shutdown complete.") + logger.info("RSFetcher thread stopped.") def restart(self): self.stop() From b017f936ddbadfd87e197bc68de2354e12325f4a Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 19:06:38 -0400 Subject: [PATCH 10/71] Thread-Safe DB Closing --- .../counterpartycore/lib/api/api_v1.py | 4 --- .../counterpartycore/lib/api/api_watcher.py | 2 +- counterparty-core/counterpartycore/server.py | 27 +++++++++++-------- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 2e1ff4533e..6e0922059c 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -456,9 +456,6 @@ def __init__(self): def stop(self): logger.info("Stopping API Status Poller thread...") self.stop_event.set() - if self.db is not None: - self.db.close() - self.db = None self.join() logger.info("API Status Poller thread stopped.") @@ -501,7 +498,6 @@ def run(self): CURRENT_API_STATUS_RESPONSE_JSON = None self.stop_event.wait(timeout=0.5) finally: - # Close the database connection in the thread if self.db is not None: self.db.close() self.db = None diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 43f19e9b4b..0f34dfd8c2 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -228,7 +228,7 @@ def insert_event(api_db, event): def rollback_event(api_db, event): - logger.debug(f"API Watcher - Rolling back event: {event['message_index']} ({event['event']})") + logger.trace(f"API Watcher - Rolling back event: {event['message_index']} ({event['event']})") with api_db: # all or if event["event"] in SKIP_EVENTS: sql = "DELETE FROM messages WHERE message_index = ?" diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 63554cf0c3..cca98fc986 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -687,20 +687,24 @@ def __init__(self): def run(self): self.db = database.get_db_connection(config.DATABASE, read_only=True, check_wal=False) - while not self.stop_event.is_set(): - if time.time() - self.last_check > 60 * 60 * 12: - try: - check.asset_conservation(self.db, self.stop_event) - except check.SanityError as e: - logger.error("Asset conservation check failed: %s" % e) - _thread.interrupt_main() - self.last_check = time.time() - time.sleep(1) + try: + while not self.stop_event.is_set(): + if time.time() - self.last_check > 60 * 60 * 12: + try: + check.asset_conservation(self.db, self.stop_event) + except check.SanityError as e: + logger.error("Asset conservation check failed: %s" % e) + _thread.interrupt_main() + self.last_check = time.time() + time.sleep(1) + finally: + if self.db is not None: + self.db.close() + self.db = None + logger.info("Asset Conservation Checker thread stopped.") def stop(self): self.stop_event.set() - if self.db: - self.db.close() def start_all(args): @@ -987,3 +991,4 @@ def bootstrap_progress(blocknum, blocksize, totalsize): "green", ) + From 7d4b0d1cc27fe371436e0bab8c97069a20afac5e Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 19:10:34 -0400 Subject: [PATCH 11/71] Typo and Tweak --- counterparty-core/counterpartycore/lib/api/api_server.py | 7 ++++--- counterparty-core/counterpartycore/lib/telemetry/daemon.py | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 5222ee1317..8990ed7aa4 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -441,15 +441,15 @@ def run_api_server(args, interrupted_value, server_ready_value): # 1. `docker-compose stop` does not send a SIGTERM to the child processes (in this case the API v2 process) # 2. `process.terminate()` does not trigger a `KeyboardInterrupt` or execute the `finally` block. class ParentProcessChecker(Thread): - def __init__(self, interruped_value, wsgi_server): + def __init__(self, interrupted_value, wsgi_server): super().__init__() - self.interruped_value = interruped_value + self.interrupted_value = interrupted_value self.wsgi_server = wsgi_server def run(self): try: while True: - if self.interruped_value.value == 0: + if self.interrupted_value.value == 0: time.sleep(0.01) else: logger.debug("Parent process is dead. Exiting...") @@ -489,3 +489,4 @@ def stop(self): self.process.kill() break logger.info("API Server process stopped.") + diff --git a/counterparty-core/counterpartycore/lib/telemetry/daemon.py b/counterparty-core/counterpartycore/lib/telemetry/daemon.py index c3cb48d006..dac8e7f2e7 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/daemon.py +++ b/counterparty-core/counterpartycore/lib/telemetry/daemon.py @@ -33,6 +33,7 @@ def start(self): self.thread.start() def _run(self): + logger.info("Starting Telemetry Daemon thread...") last_run = time.time() while self.is_running: try: @@ -48,7 +49,7 @@ def _run(self): time.sleep(0.5) def stop(self): - logger.info("Stopping telemetry daemon...") + logger.info("Stopping Telemetry Daemon thread...") self.is_running = False self.collector.close() self.thread.join() From ea3bc9e4ef4a9c4ef8a366109886cd49f8a4d657 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 19:14:47 -0400 Subject: [PATCH 12/71] More Tweaks to Threading and Multiprocessing --- .../counterpartycore/lib/api/api_server.py | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 8990ed7aa4..8235fb7756 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -5,7 +5,7 @@ import time from collections import OrderedDict from multiprocessing import Process, Value -from threading import Thread +import threading import flask import requests @@ -392,9 +392,9 @@ def init_flask_app(): return app -def run_api_server(args, interrupted_value, server_ready_value): +def run_api_server(args, server_ready_value): + # Initialize Sentry, logging, config, etc. sentry.init() - # Initialise log and config server.initialise_log_and_config(argparse.Namespace(**args)) watcher = api_watcher.APIWatcher() @@ -409,7 +409,7 @@ def run_api_server(args, interrupted_value, server_ready_value): try: # Init the HTTP Server. wsgi_server = wsgi.WSGIApplication(app, args=args) - parent_checker = ParentProcessChecker(interrupted_value, wsgi_server) + parent_checker = ParentProcessChecker(wsgi_server) parent_checker.start() app.app_context().push() # Run app server (blocking) @@ -440,36 +440,39 @@ def run_api_server(args, interrupted_value, server_ready_value): # This thread is used for the following two reasons: # 1. `docker-compose stop` does not send a SIGTERM to the child processes (in this case the API v2 process) # 2. `process.terminate()` does not trigger a `KeyboardInterrupt` or execute the `finally` block. -class ParentProcessChecker(Thread): - def __init__(self, interrupted_value, wsgi_server): +class ParentProcessChecker(threading.Thread): + def __init__(self, wsgi_server): super().__init__() - self.interrupted_value = interrupted_value + self.daemon = True self.wsgi_server = wsgi_server + self._stop_event = threading.Event() def run(self): + parent_pid = os.getppid() try: - while True: - if self.interrupted_value.value == 0: - time.sleep(0.01) - else: + while not self._stop_event.is_set(): + if os.getppid() != parent_pid: logger.debug("Parent process is dead. Exiting...") + self.wsgi_server.stop() break - self.wsgi_server.stop() + time.sleep(1) except KeyboardInterrupt: pass + def stop(self): + self._stop_event.set() + class APIServer(object): def __init__(self): self.process = None - self.interrupted = Value("I", 0) self.server_ready_value = Value("I", 0) def start(self, args): if self.process is not None: raise Exception("API Server is already running") self.process = Process( - target=run_api_server, args=(vars(args), self.interrupted, self.server_ready_value) + target=run_api_server, args=(vars(args), self.server_ready_value) ) self.process.start() return self.process @@ -479,14 +482,11 @@ def is_ready(self): def stop(self): logger.info("Stopping API Server process...") - self.interrupted.value = 1 # stop the thread - waiting_start_time = time.time() - while self.process.is_alive(): - time.sleep(0.5) - logger.trace("Waiting 2 seconds for API Server to stop...") - if time.time() - waiting_start_time > 2: - logger.error("API Server process did not stop in time. Terminating...") + if self.process.is_alive(): + self.process.terminate() + self.process.join(timeout=2) + if self.process.is_alive(): + logger.error("API Server process did not stop in time. Terminating forcefully...") self.process.kill() - break logger.info("API Server process stopped.") From babb499ecbbb5054ab2395a4303fa951597a125e Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 19:49:53 -0400 Subject: [PATCH 13/71] Main Event Loop?!?! --- .../counterpartycore/lib/follow.py | 45 ++++++++++++++----- counterparty-core/counterpartycore/server.py | 30 ++++++++----- 2 files changed, 53 insertions(+), 22 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/follow.py b/counterparty-core/counterpartycore/lib/follow.py index 4651036edd..f8ad07f786 100644 --- a/counterparty-core/counterpartycore/lib/follow.py +++ b/counterparty-core/counterpartycore/lib/follow.py @@ -80,7 +80,8 @@ def __init__(self, db): sentry.init() self.zmq_sequence_address, self.zmq_rawblock_address = get_zmq_notifications_addresses() self.db = db - self.loop = asyncio.get_event_loop() + self.loop = asyncio.new_event_loop() + asyncio.set_event_loop(self.loop) self.connect_to_zmq() self.mempool_block = [] self.mempool_block_hashes = [] @@ -223,24 +224,44 @@ async def handle(self): self.check_software_version_if_needed() util.BLOCK_PARSER_STATUS = "following" - # sequence topic - 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: - await self.receive_multipart(self.zmq_sub_socket_rawblock, "rawblock") - self.last_block_check_time = time.time() + while True: + try: + # sequence topic + 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: + await self.receive_multipart(self.zmq_sub_socket_rawblock, "rawblock") + self.last_block_check_time = time.time() - # schedule ourselves to receive the next message - asyncio.ensure_future(self.handle()) + # Yield control to the event loop to allow other tasks to run + await asyncio.sleep(0) + except asyncio.CancelledError: + logger.debug("BlockchainWatcher.handle() was cancelled.") + break # Exit the loop if the task is cancelled + except Exception as e: + logger.error("Error in handle loop: %s", e) + capture_exception(e) + break # Optionally break the loop on other exceptions def start(self): logger.debug("Starting blockchain watcher...") - self.loop.create_task(self.handle()) + # Schedule the handle coroutine once + self.task = self.loop.create_task(self.handle()) self.loop.run_forever() def stop(self): logger.debug("Stopping blockchain watcher...") + # Cancel the handle task + self.task.cancel() + try: + # Run the event loop until the task has been cancelled + self.loop.run_until_complete(self.task) + except asyncio.CancelledError: + logger.debug("BlockchainWatcher.handle() cancelled successfully.") + # Stop and close the event loop self.loop.stop() + self.loop.close() + # Clean up ZMQ context self.zmq_context.destroy() diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index cca98fc986..1a575667fa 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -725,40 +725,44 @@ def start_all(args): } logger.debug(f"Config: {custom_config}") + def handle_interrupt_signal(signum, frame): + logger.warning(f"Received signal {signal.strsignal(signum)}. Initiating shutdown...") + raise KeyboardInterrupt + try: - # set signal handlers (needed for graceful shutdown on SIGINT/SIGTERM) + # Set signal handlers for graceful shutdown signal.signal(signal.SIGINT, handle_interrupt_signal) signal.signal(signal.SIGTERM, handle_interrupt_signal) - # download bootstrap if necessary + # Download bootstrap if necessary if not os.path.exists(config.DATABASE) and args.catch_up == "bootstrap": bootstrap(no_confirm=True) - # initialise database + # Initialise database db = database.initialise_db() blocks.initialise(db) blocks.check_database_version(db) database.optimize(db) - # check software version + # Check software version check.software_version() - # API Server v2. + # 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. + # Backend connect_to_backend() - # API Status Poller. + # 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_server_v1 = api_v1.APIServer() api_server_v1.daemon = True api_server_v1.start() @@ -774,11 +778,16 @@ def start_all(args): logger.info("Watching for new blocks...") follower_daemon = follow.start_blockchain_watcher(db) + # Keep the main thread alive + while True: + time.sleep(1) + except KeyboardInterrupt: - logger.warning("Keyboard interrupt!") + logger.warning("Keyboard interrupt received. Shutting down...") except Exception as e: logger.error("Exception caught!", exc_info=e) finally: + # Ensure all services are stopped if api_server_v2: api_server_v2.stop() if telemetry_daemon: @@ -802,7 +811,7 @@ def start_all(args): database.check_wal_file(config.DATABASE) except exceptions.WALFileFoundError: logger.warning( - "Database WAL file detected. To ensure no data corruption has occurred, run `counterpary-server check-db`." + "Database WAL file detected. To ensure no data corruption has occurred, run `counterparty-server check-db`." ) except exceptions.DatabaseError: logger.warning( @@ -992,3 +1001,4 @@ def bootstrap_progress(blocknum, blocksize, totalsize): ) + From 3a3fc1030f1f5ff83ec9334a0571760834a3d8ea Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 19:51:42 -0400 Subject: [PATCH 14/71] Keyboard Interrupt --- counterparty-core/counterpartycore/lib/api/api_server.py | 2 +- counterparty-core/counterpartycore/server.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 8235fb7756..7c54b97d48 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -416,7 +416,7 @@ def run_api_server(args, server_ready_value): server_ready_value.value = 1 wsgi_server.run() except KeyboardInterrupt: - logger.warning("Keyboard Interrupt!") + logger.warning("Keyboard interrupt received. Shutting down...") except Exception as e: capture_exception(e) logger.error("Error in API Server: %s", e) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 1a575667fa..2add50d121 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -726,7 +726,7 @@ def start_all(args): logger.debug(f"Config: {custom_config}") def handle_interrupt_signal(signum, frame): - logger.warning(f"Received signal {signal.strsignal(signum)}. Initiating shutdown...") + logger.warning("Keyboard interrupt received. Shutting down...") raise KeyboardInterrupt try: @@ -783,7 +783,7 @@ def handle_interrupt_signal(signum, frame): time.sleep(1) except KeyboardInterrupt: - logger.warning("Keyboard interrupt received. Shutting down...") + pass except Exception as e: logger.error("Exception caught!", exc_info=e) finally: From c93d2feb361327a3447a29008667d3391dd55560 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Sun, 20 Oct 2024 23:42:42 -0400 Subject: [PATCH 15/71] Telemetry Error Message Level --- counterparty-core/counterpartycore/lib/telemetry/oneshot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py index 63b818c64e..09aab4f5f9 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py +++ b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py @@ -24,7 +24,7 @@ def submit(self): self.client.send(data) except Exception as e: capture_exception(e) - logger.error(f"Error in telemetry one shot: {e}") + logger.warning(f"Error in telemetry one shot: {e}") def close(self): self.db.close() From e194639d72786564eb420aec7c77b3888a98a432 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 10:27:41 -0400 Subject: [PATCH 16/71] Ruff --- .../counterpartycore/lib/api/api_server.py | 7 ++----- counterparty-core/counterpartycore/lib/api/api_v1.py | 12 ++++++------ .../counterpartycore/lib/api/api_watcher.py | 3 +-- counterparty-core/counterpartycore/lib/check.py | 2 +- counterparty-core/counterpartycore/server.py | 4 +--- 5 files changed, 11 insertions(+), 17 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 7c54b97d48..c034614cca 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -2,10 +2,10 @@ import logging import multiprocessing import os +import threading import time from collections import OrderedDict from multiprocessing import Process, Value -import threading import flask import requests @@ -471,9 +471,7 @@ def __init__(self): def start(self, args): if self.process is not None: raise Exception("API Server is already running") - self.process = Process( - target=run_api_server, args=(vars(args), self.server_ready_value) - ) + self.process = Process(target=run_api_server, args=(vars(args), self.server_ready_value)) self.process.start() return self.process @@ -489,4 +487,3 @@ def stop(self): logger.error("API Server process did not stop in time. Terminating forcefully...") self.process.kill() logger.info("API Server process stopped.") - diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 6e0922059c..9aadf90bd8 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -465,7 +465,7 @@ def run(self): self.db = database.get_db_connection(config.API_DATABASE, read_only=True, check_wal=False) interval_if_ready = 5 * 60 # 5 minutes - interval_if_not_ready = 60 # 1 minute + interval_if_not_ready = 60 # 1 minute interval = interval_if_not_ready try: @@ -473,15 +473,15 @@ def run(self): try: # Check that backend is running, communicable, and caught up with the blockchain. # Check that the database has caught up with bitcoind. - if ( - time.time() - self.last_database_check > interval - ): + if time.time() - self.last_database_check > interval: self.last_database_check = time.time() if not config.FORCE and self.db is not None: code = 11 check_backend_state() code = 12 - api_util.check_last_parsed_block(self.db, backend.bitcoind.getblockcount()) + api_util.check_last_parsed_block( + self.db, backend.bitcoind.getblockcount() + ) interval = interval_if_ready except (BackendError, exceptions.DatabaseError) as e: interval = interval_if_not_ready @@ -496,7 +496,7 @@ def run(self): else: CURRENT_API_STATUS_CODE = None CURRENT_API_STATUS_RESPONSE_JSON = None - self.stop_event.wait(timeout=0.5) + self.stop_event.wait(timeout=0.5) finally: if self.db is not None: self.db.close() diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 0f34dfd8c2..81ba9ab20b 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -1,9 +1,9 @@ import json import logging import os +import threading import time from random import randrange -import threading import apsw from counterpartycore.lib import blocks, config, database, exceptions, ledger @@ -961,4 +961,3 @@ def stop(self): if self.ledger_db is not None: self.ledger_db.close() logger.info("API Watcher thread stopped.") - diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 6d6c8e74ae..0ea1662acf 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -964,7 +964,7 @@ def check_change(protocol_change, change_name): explanation = f"Your version of {config.APP_NAME} is v{config.VERSION_STRING}, but, " explanation += f"as of block {protocol_change['block_index']}, the minimum version is " explanation += f"v{protocol_change['minimum_version_major']}.{protocol_change['minimum_version_minor']}.{protocol_change['minimum_version_revision']}. " - explanation += (f"Reason: ' {change_name} '. Please upgrade to the latest version and restart the server.") + explanation += f"Reason: ' {change_name} '. Please upgrade to the latest version and restart the server." if util.CURRENT_BLOCK_INDEX >= protocol_change["block_index"]: raise VersionUpdateRequiredError(explanation) else: diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 2add50d121..5305a3b9a6 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -601,6 +601,7 @@ def initialise_config( config.GUNICORN_THREADS_PER_WORKER = gunicorn_threads_per_worker config.GUNICORN_WORKERS = gunicorn_workers + def initialise_log_and_config(args): # Configuration init_args = { @@ -999,6 +1000,3 @@ def bootstrap_progress(blocknum, blocksize, totalsize): f"Databases have been successfully bootstrapped to {ledger_database_path} and {api_database_path}.", "green", ) - - - From 2a572f6e60a9a8ee20025357d2fdddabec823c29 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 10:50:17 -0400 Subject: [PATCH 17/71] Bug in API Watcher --- .../counterpartycore/lib/api/api_watcher.py | 10 ++++++---- .../counterpartycore/lib/backend/bitcoind.py | 3 +-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 81ba9ab20b..8c7a7fd081 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -753,7 +753,7 @@ def rollback(block_index): api_db.close() -def parse_next_event(api_db, ledger_db): +def parse_next_event(api_db, ledger_db, watcher): check_event_hashes(api_db, ledger_db) last_event_sql = "SELECT * FROM messages ORDER BY message_index DESC LIMIT 1" @@ -766,7 +766,7 @@ def parse_next_event(api_db, ledger_db): if last_api_event is None: next_event_sql = "SELECT * FROM messages ORDER BY message_index ASC LIMIT 1" next_event = fetch_one(ledger_db, next_event_sql) - parse_event(api_db, next_event) + parse_event(api_db, next_event, watcher) return next_event if last_ledger_event["message_index"] > last_api_event["message_index"]: @@ -774,7 +774,7 @@ def parse_next_event(api_db, ledger_db): "SELECT * FROM messages WHERE message_index > ? ORDER BY message_index ASC LIMIT 1" ) next_event = fetch_one(ledger_db, next_event_sql, (last_api_event["message_index"],)) - parse_event(api_db, next_event) + parse_event(api_db, next_event, watcher) return next_event raise exceptions.NoEventToParse("No event to parse") @@ -940,7 +940,7 @@ def follow(self): while not self.stop_event.is_set(): last_parsed_event = None try: - last_parsed_event = parse_next_event(self.api_db, self.ledger_db) + last_parsed_event = parse_next_event(self.api_db, self.ledger_db, self) except exceptions.NoEventToParse: logger.trace("API Watcher - No new events to parse") self.stop_event.wait(timeout=0.1) @@ -961,3 +961,5 @@ def stop(self): if self.ledger_db is not None: self.ledger_db.close() logger.info("API Watcher thread stopped.") + + diff --git a/counterparty-core/counterpartycore/lib/backend/bitcoind.py b/counterparty-core/counterpartycore/lib/backend/bitcoind.py index f5ed783c2e..367431f3b5 100644 --- a/counterparty-core/counterpartycore/lib/backend/bitcoind.py +++ b/counterparty-core/counterpartycore/lib/backend/bitcoind.py @@ -56,8 +56,7 @@ def rpc_call(payload, retry=0): raise exceptions.BitcoindRPCError(str(response.status_code) + " " + response.reason) break except KeyboardInterrupt: - logger.warning("Interrupted by user") - exit(0) + raise except (Timeout, ReadTimeout, ConnectionError, ChunkedEncodingError): logger.warning( f"Could not connect to backend at `{util.clean_url_for_log(url)}`. (Attempt: {tries})" From 43688a0b5e251ada00f181dc9571f5037e634bdf Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 11:07:20 -0400 Subject: [PATCH 18/71] DB Connection Closing --- .../counterpartycore/lib/api/api_server.py | 18 +++++++++++------- .../counterpartycore/lib/database.py | 11 ++++++++++- counterparty-core/counterpartycore/server.py | 10 +++++++++- 3 files changed, 30 insertions(+), 9 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index c034614cca..d2faff9371 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -423,15 +423,18 @@ def run_api_server(args, server_ready_value): finally: logger.info("Stopping API Server threads...") - watcher.stop() - watcher.join() + if watcher is not None: + watcher.stop() + watcher.join() - wsgi_server.stop() - wsgi_server.join() + if wsgi_server is not None: + wsgi_server.stop() + wsgi_server.join() - logger.info("Stopping ParentProcessChecker thread...") - parent_checker.stop() - parent_checker.join() + if parent_checker is not None: + logger.info("Stopping ParentProcessChecker thread...") + parent_checker.stop() + parent_checker.join() logger.info("Closing DB connection pool...") APIDBConnectionPool().close() @@ -487,3 +490,4 @@ def stop(self): logger.error("API Server process did not stop in time. Terminating forcefully...") self.process.kill() logger.info("API Server process stopped.") + diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 39ed2104fe..6464d56904 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -50,7 +50,16 @@ def check_wal_file(db_file): def get_db_connection(db_file, read_only=True, check_wal=False): """Connects to the SQLite database, returning a db `Connection` object""" - logger.debug(f"Creating connection to `{db_file}`...") + + import traceback + traceback.print_stack() + if db_file == config.DATABASE: + db_file_name = "Ledger DB" + elif db_file == config.API_DATABASE: + db_file_name = "API DB" + else: + db_file_name = db_file + logger.debug(f"Creating connection to {db_file_name}...") if not read_only and check_wal: try: diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 5305a3b9a6..ec1c7b6ec6 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -818,7 +818,15 @@ def handle_interrupt_signal(signum, frame): logger.warning( "Database is in use by another process and was unable to be closed correctly." ) - # Ensure that the last closed connection is not read-only in order to delete WAL and SHM files + + # Wait for all DB connections to close + # Check the number of open DB connections + open_connections = len(database.DBConnectionPool().connections) + while open_connections > 0: + logger.debug(f"Waiting for {open_connections} DB connections to close...") + time.sleep(0.1) + + logger.debug("Cleaning up WAL and SHM files...") api_db = database.get_db_connection(config.API_DATABASE, read_only=False, check_wal=False) api_db.close() logger.info("Shutdown complete.") From 70d4b377aef5f27317fee089eb5e89c10f57f0f5 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 11:12:29 -0400 Subject: [PATCH 19/71] Remove Traceback --- counterparty-core/counterpartycore/lib/api/api_server.py | 1 - counterparty-core/counterpartycore/lib/api/api_watcher.py | 2 -- counterparty-core/counterpartycore/lib/database.py | 6 ++---- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index d2faff9371..966450ccbf 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -490,4 +490,3 @@ def stop(self): logger.error("API Server process did not stop in time. Terminating forcefully...") self.process.kill() logger.info("API Server process stopped.") - diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 8c7a7fd081..4eee505225 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -961,5 +961,3 @@ def stop(self): if self.ledger_db is not None: self.ledger_db.close() logger.info("API Watcher thread stopped.") - - diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 6464d56904..118991d0b5 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -51,15 +51,13 @@ def check_wal_file(db_file): def get_db_connection(db_file, read_only=True, check_wal=False): """Connects to the SQLite database, returning a db `Connection` object""" - import traceback - traceback.print_stack() if db_file == config.DATABASE: db_file_name = "Ledger DB" - elif db_file == config.API_DATABASE: + elif db_file == config.API_DATABASE: db_file_name = "API DB" else: db_file_name = db_file - logger.debug(f"Creating connection to {db_file_name}...") + logger.trace(f"Creating connection to {db_file_name}...") if not read_only and check_wal: try: From e31960379b9d2787b12c74011851e04b202a76db Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 11:19:02 -0400 Subject: [PATCH 20/71] Signal to Main Process when API Server has Stopped --- .../counterpartycore/lib/api/api_server.py | 11 +++++++++-- counterparty-core/counterpartycore/server.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 966450ccbf..6c9d842f63 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, server_ready_value): +def run_api_server(args, server_ready_value, stop_event): # Initialize Sentry, logging, config, etc. sentry.init() server.initialise_log_and_config(argparse.Namespace(**args)) @@ -439,6 +439,9 @@ def run_api_server(args, server_ready_value): logger.info("Closing DB connection pool...") APIDBConnectionPool().close() + # Signal the main process that this process is stopping + stop_event.set() + # This thread is used for the following two reasons: # 1. `docker-compose stop` does not send a SIGTERM to the child processes (in this case the API v2 process) @@ -470,11 +473,12 @@ class APIServer(object): def __init__(self): self.process = None self.server_ready_value = Value("I", 0) + self.stop_event = multiprocessing.Event() def start(self, args): if self.process is not None: raise Exception("API Server is already running") - self.process = Process(target=run_api_server, args=(vars(args), self.server_ready_value)) + self.process = Process(target=run_api_server, args=(vars(args), self.server_ready_value, self.stop_event)) self.process.start() return self.process @@ -490,3 +494,6 @@ def stop(self): logger.error("API Server process did not stop in time. Terminating forcefully...") self.process.kill() logger.info("API Server process stopped.") + + def has_stopped(self): + return self.stop_event.is_set() diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index ec1c7b6ec6..115b2dfe30 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -751,7 +751,7 @@ def handle_interrupt_signal(signum, frame): # API Server v2 api_server_v2 = api_v2.APIServer() api_server_v2.start(args) - while not api_server_v2.is_ready(): + while not api_server_v2.is_ready() and not api_server_v2.has_stopped(): logger.trace("Waiting for API server to start...") time.sleep(0.1) From 02e80f428d2fbce10fa22d0ed2a2607219a37309 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 11:21:12 -0400 Subject: [PATCH 21/71] RSFetcher Initialization --- .../counterpartycore/lib/backend/rsfetcher.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 9c09e3ab9f..d2ec865444 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -37,6 +37,14 @@ def __init__(self, indexer_config=None): self.running = False self.lock = threading.Lock() + # Initialize additional attributes + self.executor = None + self.stopped = True + self.prefetch_queue = [] + self.prefetch_queue_size = 0 + self.prefetch_queue_initialized = False + self.next_height = 0 + def start(self, start_height=0): logger.info("Starting RSFetcher thread...") try: From 3f07a92d9a4b1ddfd8b0b34a4b57806d8829c6e1 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 11:32:19 -0400 Subject: [PATCH 22/71] RocksDB Lockfile --- .../counterpartycore/lib/backend/rsfetcher.py | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index d2ec865444..c9cb05ee1c 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -2,6 +2,8 @@ import random import threading import time +import os +import fcntl from concurrent.futures import ThreadPoolExecutor from counterparty_rs import indexer @@ -36,6 +38,8 @@ def __init__(self, indexer_config=None): self.prefetch_task = None self.running = False self.lock = threading.Lock() + self.lockfile_path = os.path.join(self.config["db_dir"], "rocksdb.lock") + self.lockfile = None # Initialize additional attributes self.executor = None @@ -45,7 +49,24 @@ def __init__(self, indexer_config=None): self.prefetch_queue_initialized = False self.next_height = 0 + def acquire_lockfile(self): + try: + self.lockfile = open(self.lockfile_path, 'w') + fcntl.flock(self.lockfile, fcntl.LOCK_EX | fcntl.LOCK_NB) + logger.debug("Lockfile acquired.") + except IOError as e: + logger.error(f"Unable to acquire lockfile: {e}") + raise RuntimeError("Another instance is already running.") + + def release_lockfile(self): + if self.lockfile: + fcntl.flock(self.lockfile, fcntl.LOCK_UN) + self.lockfile.close() + os.remove(self.lockfile_path) + logger.debug("Lockfile released.") + def start(self, start_height=0): + self.acquire_lockfile() logger.info("Starting RSFetcher thread...") try: self.config["start_height"] = start_height @@ -179,6 +200,7 @@ def stop(self): finally: self.fetcher = None self.prefetch_task = None + self.release_lockfile() logger.info("RSFetcher thread stopped.") def restart(self): From a661f546eb3f6eddf65cf93ccc76b2faa627d9e2 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 11:43:10 -0400 Subject: [PATCH 23/71] RocksDB Lockfile Fix --- .../counterpartycore/lib/backend/rsfetcher.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index c9cb05ee1c..0eb235d022 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -4,6 +4,7 @@ import time import os import fcntl +import errno from concurrent.futures import ThreadPoolExecutor from counterparty_rs import indexer @@ -50,13 +51,22 @@ def __init__(self, indexer_config=None): self.next_height = 0 def acquire_lockfile(self): + # Ensure the directory exists + os.makedirs(self.config['db_dir'], exist_ok=True) + logger.debug(f"Ensured that directory {self.config['db_dir']} exists for lockfile.") + try: - self.lockfile = open(self.lockfile_path, 'w') + fd = os.open(self.lockfile_path, os.O_CREAT | os.O_RDWR) + self.lockfile = os.fdopen(fd, 'w') fcntl.flock(self.lockfile, fcntl.LOCK_EX | fcntl.LOCK_NB) logger.debug("Lockfile acquired.") except IOError as e: - logger.error(f"Unable to acquire lockfile: {e}") - raise RuntimeError("Another instance is already running.") + if e.errno in (errno.EACCES, errno.EAGAIN): + logger.error(f"Another instance is running. Unable to acquire lockfile: {e}") + raise RuntimeError("Failed to acquire lockfile.") + else: + logger.error(f"Unexpected error acquiring lockfile: {e}") + raise def release_lockfile(self): if self.lockfile: @@ -66,8 +76,8 @@ def release_lockfile(self): logger.debug("Lockfile released.") def start(self, start_height=0): - self.acquire_lockfile() logger.info("Starting RSFetcher thread...") + self.acquire_lockfile() try: self.config["start_height"] = start_height self.next_height = start_height From 4aedca1d7b71c1e7f41f22dd8253f6f13aff463f Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 21 Oct 2024 11:43:49 -0400 Subject: [PATCH 24/71] Ruff --- .../counterpartycore/lib/api/api_server.py | 4 +++- .../counterpartycore/lib/backend/rsfetcher.py | 14 +++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 6c9d842f63..00a56d6c18 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -478,7 +478,9 @@ def __init__(self): def start(self, args): if self.process is not None: raise Exception("API Server is already running") - self.process = Process(target=run_api_server, args=(vars(args), self.server_ready_value, self.stop_event)) + self.process = Process( + target=run_api_server, args=(vars(args), self.server_ready_value, self.stop_event) + ) self.process.start() return self.process diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 0eb235d022..232000d54f 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -1,10 +1,10 @@ +import errno +import fcntl import logging +import os import random import threading import time -import os -import fcntl -import errno from concurrent.futures import ThreadPoolExecutor from counterparty_rs import indexer @@ -52,18 +52,18 @@ def __init__(self, indexer_config=None): def acquire_lockfile(self): # Ensure the directory exists - os.makedirs(self.config['db_dir'], exist_ok=True) + os.makedirs(self.config["db_dir"], exist_ok=True) logger.debug(f"Ensured that directory {self.config['db_dir']} exists for lockfile.") - + try: fd = os.open(self.lockfile_path, os.O_CREAT | os.O_RDWR) - self.lockfile = os.fdopen(fd, 'w') + self.lockfile = os.fdopen(fd, "w") fcntl.flock(self.lockfile, fcntl.LOCK_EX | fcntl.LOCK_NB) logger.debug("Lockfile acquired.") except IOError as e: if e.errno in (errno.EACCES, errno.EAGAIN): logger.error(f"Another instance is running. Unable to acquire lockfile: {e}") - raise RuntimeError("Failed to acquire lockfile.") + raise RuntimeError("Failed to acquire lockfile.") from e else: logger.error(f"Unexpected error acquiring lockfile: {e}") raise From a370a23867c3c3f9a7977ef9f488d603182f4357 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 22 Oct 2024 12:52:19 +0000 Subject: [PATCH 25/71] Return all balances --- apiary.apib | 3736 ++++++++--------- .../counterpartycore/lib/api/queries.py | 4 +- .../test/regtest/apidoc/apicache.json | 3398 ++++++++------- .../scenarios/scenario_1_fairminter.py | 17 + release-notes/release-notes-v10.5.0.md | 1 + 5 files changed, 3534 insertions(+), 3622 deletions(-) diff --git a/apiary.apib b/apiary.apib index dc944fcbd0..7a35e4a9aa 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-21 19:39:00.350854. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-22 12:43:02.520452. 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": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", "block_index": 196, - "block_time": 1729539524, + "block_time": 1729600965, "difficulty": 545259519, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412" + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4" }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", "block_index": 196, - "block_time": 1729539524, + "block_time": 1729600965, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "fee": 0, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a: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": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "out_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "block_time": 1729539524, + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "block_time": 1729600965, "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": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "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": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "memo": null, "quantity": 10000, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "status": "valid", - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca", + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", "tx_index": 55, - "block_time": 1729539479, + "block_time": 1729600911, "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": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca", + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", "block_index": 189, - "block_time": 1729539479 + "block_time": 1729600911 } ], "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": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "tx_index": 56, - "block_time": 1729539483, + "block_time": 1729600915, "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": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "block_time": 1729539483 + "block_time": 1729600915 } ], "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": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "status": "valid", - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "block_time": 1729539510 + "block_time": 1729600951 } ], "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": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "tx_index": 41, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "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": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "block_time": 1729539349 + "block_time": 1729600767 } ], "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": 1729539380 + "block_time": 1729600808 }, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "block_index": 161, - "block_time": 1729539380 + "block_time": 1729600808 } ], "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": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", "transfer": false, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "tx_index": 48, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "block_index": 161, - "block_time": 1729539380 + "block_time": 1729600808 } ], "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": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", "tag": "64657374726f79", - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "tx_index": 61, - "block_time": 1729539514, + "block_time": 1729600956, "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": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "block_index": 195, - "block_time": 1729539514 + "block_time": 1729600956 } ], "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": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "open", - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, - "block_time": 1729539506, + "block_time": 1729600947, "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": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 } ], "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": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "tx0_index": 51, - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx1_index": 54, - "block_time": 1729539474, + "block_time": 1729600907, "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": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "block_index": 188, - "block_time": 1729539474 + "block_time": 1729600907 } ], "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": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8" + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0" }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 } ], "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": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60" + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645" }, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_time": 1729539470 + "block_time": 1729600903 } ], "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": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "status": "completed" }, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_time": 1729539470 + "block_time": 1729600903 } ], "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": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "status": "valid", - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "tx_index": 53, - "block_time": 1729539470, + "block_time": 1729600903, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_time": 1729539470 + "block_time": 1729600903 } ], "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": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "tx_index": 58, - "block_time": 1729539502 + "block_time": 1729600933 }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 } ], "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": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "block_time": 1729539395 + "order_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "block_time": 1729600834 }, "tx_hash": null, "block_index": 184, - "block_time": 1729539395 + "block_time": 1729600834 } ], "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": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "block_time": 1729539395 + "order_match_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "block_time": 1729600834 }, "tx_hash": null, "block_index": 184, - "block_time": 1729539395 + "block_time": 1729600834 } ], "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": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "satoshirate": 1, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "tx_index": 33, - "block_time": 1729539315, + "block_time": 1729600733, "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": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "block_index": 146, - "block_time": 1729539315 + "block_time": 1729600733 } ], "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": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "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": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "mnizsbWSmdSHrHsW3qa6HXoXc5Gg71TiEe", + "destination": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", "dispense_quantity": 10, - "dispenser_tx_hash": "35ec70b0a2764c50b4609f0e32541676c795160f154238d9339df8428ade9320", - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "tx_hash": "eb8e726f3aba4011de694df07774c7d0552239ca3018fca6bb584009ae709b21", + "dispenser_tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx_hash": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", "tx_index": 31, - "block_time": 1729539306, + "block_time": 1729600725, "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": "eb8e726f3aba4011de694df07774c7d0552239ca3018fca6bb584009ae709b21", + "tx_hash": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", "block_index": 144, - "block_time": 1729539306 + "block_time": 1729600725 } ], "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": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "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": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "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": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "tx_index": 25, "value": 66600.0, - "block_time": 1729539280, + "block_time": 1729600700, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "block_index": 138, - "block_time": 1729539280 + "block_time": 1729600700 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "start_block": 0, "status": "open", - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "tx_index": 42, - "block_time": 1729539353, + "block_time": 1729600782, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "block_index": 155, - "block_time": 1729539353 + "block_time": 1729600782 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6" + "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c" }, "tx_hash": null, "block_index": 130, - "block_time": 1729539247 + "block_time": 1729600666 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "paid_quantity": 34, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "status": "valid", - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "block_index": 136, - "block_time": 1729539273 + "block_time": 1729600691 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", + "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "tx_index": 39, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "block_index": 152, - "block_time": 1729539340 + "block_time": 1729600759 } ], "next_cursor": 296, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a:0", + "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", "status": "valid", - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "tx_index": 38, - "block_time": 1729539336, + "block_time": 1729600754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "block_index": 151, - "block_time": 1729539336 + "block_time": 1729600754 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "msg_index": 1, "quantity": 1500000000, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "status": "valid", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 555, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwt93j38jza7mma9luld0e0wgdk7h44wj54tzqt", + "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", "status": "valid", - "tx_hash": "8f53b933c75c6287892dd9a2784df9a8083cc903e69796d5774d348f9604e349", + "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", "tx_index": 9, - "block_time": 1729539209, + "block_time": 1729600628, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8f53b933c75c6287892dd9a2784df9a8083cc903e69796d5774d348f9604e349", + "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", "block_index": 121, - "block_time": 1729539209 + "block_time": 1729600628 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", "difficulty": 545259519, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", - "block_time": 1729539514, - "previous_block_hash": "34afe554bacdcfaa324f45a80d72cf180633a12b8aacba104787728559bc8361", + "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_time": 1729600956, + "previous_block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", "difficulty": 545259519, - "ledger_hash": "c3899c554834b50a26621c88b4bed68ee702ea293135873cce29ab64692e19bd", - "txlist_hash": "1755b991dcbcb5ac98971c32ef76f8bed5d6653c2fc4b806f47700889c817e16", - "messages_hash": "efc03b7f03dc0759a28ae41e985f9770bc604673efb8b74a167f9072db2dfc15", + "ledger_hash": "e48b67326c9efd18380dad32fbed87d7fe390d83de7bcb3f6b157e6b5ef956f1", + "txlist_hash": "041fd68016df50126076dfb0a738da62ef83347efd3a672e616dad9ca2e7d200", + "messages_hash": "b7551fd65d852da0d472fe3f7ce12b0a39c92b628d3d9d5299215464355fa1f5", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "34afe554bacdcfaa324f45a80d72cf180633a12b8aacba104787728559bc8361", - "block_time": 1729539510, - "previous_block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", + "block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", + "block_time": 1729600951, + "previous_block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", "difficulty": 545259519, - "ledger_hash": "8a0b1ce684e176c0c676d84c2596dc84edf3549bed4a87b135d58660ad0c10ec", - "txlist_hash": "2d4a98efb870a98382b4527647ef00b420d401f16812bb64874dd314d3c28acb", - "messages_hash": "f68ca9795328519c4ea67221557f82ec21f3366411f6b4e26bd956cb59e4e796", + "ledger_hash": "dc5a06cfc520a5d57cafae40d5e79dd7a3c17bbc3136daf6ad97733d332be6f6", + "txlist_hash": "2236faa5272fc565cdf8ae0d25cdcc774d5338b06e526427a7783458ceee8176", + "messages_hash": "f204bc1337b1509f81a1b2244859fbdc2552f60c8e1ae5b60cd99f795a1fc604", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", - "block_time": 1729539506, - "previous_block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_time": 1729600947, + "previous_block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", "difficulty": 545259519, - "ledger_hash": "590a7b2cd73e248089c69df185643958664793017a4fc750dab93b74e86369e5", - "txlist_hash": "9271a5d601790d2e559e9aa9dfb4b67533d401590017b46e2b9aa91733a60676", - "messages_hash": "e81a6a2db04cd967e163318d74fe6aa727da4c463cf2bacc54ecc3d3f0f78d29", + "ledger_hash": "3a315522b7c252ceb1380e21eb29fc5d72017b4d72cc880b59ae9798537ba933", + "txlist_hash": "e837b2dad7d07a242cbaf531cebcee8ec450f76e549feb61ad16da9b4d51457e", + "messages_hash": "96e9b84c58dbb670f928c5c78c4e418d82c442aba945ae83066e5a711433b078", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", - "block_time": 1729539502, - "previous_block_hash": "1fbfa93a4d84ecc6b6fac2b1d9f9796a3ce826e9e3973c30fb528eeb9b715646", + "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_time": 1729600933, + "previous_block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", "difficulty": 545259519, - "ledger_hash": "6149c5da996cfae88a4d86c9baf5143ed26376be96d96cf35bc825c8b36887c2", - "txlist_hash": "49121e4a24ca0b386324c0ca001225824aefd311df34c7b0e68023151e6630e4", - "messages_hash": "77688a192fd204ba7e4bc20afe10f4ff0cd112e3cf9c8a6355aed2154315a67b", + "ledger_hash": "c3111aa657e1a7d5e2c9aad182edaeab7745e4f2a197af20360f741cb5259ad8", + "txlist_hash": "807bcd13ec86e30acb4098fe72a6dc1ccbff59da7659962586d5b43bd85697e7", + "messages_hash": "62cbf318197e5a7cedb01b9d332cafe5dac47201a0abbf2317c30c4de8fed316", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", "difficulty": 545259519, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2` (str, required) - The index of the block to return + + block_hash: `7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", "difficulty": 545259519, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 561, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 560, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" } ], "next_cursor": 558, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 557, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 554, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "object_id": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "block_index": 184, "confirmed": true, - "block_time": 1729539395 + "block_time": 1729600834 }, { "type": "order", - "object_id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, "confirmed": true, - "block_time": 1729539395 + "block_time": 1729600834 }, { "type": "order_match", - "object_id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "block_index": 184, "confirmed": true, - "block_time": 1729539395 + "block_time": 1729600834 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "status": "valid", "confirmed": true, - "block_time": 1729539502 + "block_time": 1729600933 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "block_index": 195, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729539514, + "block_time": 1729600956, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -2568,17 +2568,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "block_index": 138, - "block_hash": "748c30ce40c032b1d1b65122f46feaff188b3186748106a1ae0cafa7c0f4d695", - "block_time": 1729539280, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "436a3ad2a03d7d359c1704ac59b27e367dd02865626c5bfc682796718797d09e", + "block_time": 1729600700, + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec:1", + "utxos_info": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2603,25 +2603,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_hash": "3b12bc987628e1e2db65beb62bf59201295e7a22e69baa3c4eb63a4604767fdd", - "block_time": 1729539470, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2faaacaebe28aa08cb56362cfd203652620ca3c6224b26f4b40655a8e3f0f088", + "block_time": 1729600903, + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "btc_amount": 2000, "fee": 10000, - "data": "0bdf1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "data": "0b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a406c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "supported": true, - "utxos_info": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633:0", + "utxos_info": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "status": "valid" } }, @@ -2636,23 +2636,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", - "block_time": 1729539502, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_time": 1729600933, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "464aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "supported": true, - "utxos_info": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73:1", + "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "status": "valid" } }, @@ -2667,17 +2667,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "block_index": 195, - "block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", - "block_time": 1729539514, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_time": 1729600956, + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043:1", + "utxos_info": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2707,17 +2707,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "block_index": 146, - "block_hash": "3dfeed03fabe2ef0d0af49c76bd456c635fb189b5fe87a03beb67a7438a475bb", - "block_time": 1729539315, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "3779dff124fe6d5ce31075972bbb2e2fcc4ee5acc22b1b2e580d3c68bc870edd", + "block_time": 1729600733, + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080f9b38e2d42efb9307785475778151ec301966ac2", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890", "supported": true, - "utxos_info": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310:1", + "utxos_info": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2729,7 +2729,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": "valid", "asset_info": { "divisible": true, @@ -2753,17 +2753,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2783,17 +2783,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "block_hash": "1bd7e3fcf4cfd635dcf57fa8e11d0254e036bb5f4691436dee34bb6ae86fd57f", - "block_time": 1729539349, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "724102867d389c0623ead8edcdc111363d1e8ea42c94bc7b4eb472beab872f59", + "block_time": 1729600767, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2:1", + "utxos_info": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2806,7 +2806,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "block_index": 161, - "block_hash": "3c1de19cd5c9c5bcddac8c2213ed9758a6b0745a24f03513220f74182d6dc801", - "block_time": 1729539380, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "4161ba27bbea00dfedd4c73f3208b79ff6ac711c8b6c31741920396432f339cb", + "block_time": 1729600808, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c:1", + "utxos_info": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2873,17 +2873,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", - "block_time": 1729539506, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_time": 1729600947, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf:1", + "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2926,17 +2926,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca", + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", "block_index": 189, - "block_hash": "27271b5c6600e33baedd17b19ecb53f46baf2e43cddbd6a88a33d3cf80b62138", - "block_time": 1729539479, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "block_hash": "5a59a868e4be17d595c103ab08afa966cb514e326e7069aa6ae2288610104f7d", + "block_time": 1729600911, + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108092b8d704c9efa380416e70f1b303fe9c684ff733", + "data": "020000000000000001000000000000271080ef05fe482e497897dec9187c938a3627e18a4a92", "supported": true, - "utxos_info": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca:1", + "utxos_info": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2944,7 +2944,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "memo": null, "asset_info": { "divisible": true, @@ -2967,17 +2967,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "block_hash": "512cd864a4fb5f274f85b9ad4481189cf6977e77bf7c7064edd66a680fb6a663", - "block_time": 1729539483, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", + "block_time": 1729600915, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f7eae152229797886fd0a0c038058dc14ebbf321806feccc6eea57e305353dbb4066d049f14d2df4ac8092b8d704c9efa380416e70f1b303fe9c684ff733400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f:0", + "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2985,14 +2985,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -3000,7 +3000,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3026,23 +3026,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "block_hash": "34afe554bacdcfaa324f45a80d72cf180633a12b8aacba104787728559bc8361", - "block_time": 1729539510, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", + "block_time": 1729600951, + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "048092b8d704c9efa380416e70f1b303fe9c684ff733017377656570206d7920617373657473", + "data": "0480ef05fe482e497897dec9187c938a3627e18a4a92017377656570206d7920617373657473", "supported": true, - "utxos_info": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de:1", + "utxos_info": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "memo": "sweep my assets" } @@ -3075,17 +3075,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3098,17 +3098,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "block_index": 195, - "block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", - "block_time": 1729539514, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_time": 1729600956, + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043:1", + "utxos_info": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3140,7 +3140,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001062617b41fa225962b83f0864b40b52546b9452d23d27501a4ee908bdf9b5a7ab30000000000ffffffffd3ea7489f088d82239411b5aedee6827d952a53a205f08bb621d7b2fd52826800000000000ffffffff9e72681c5dfcf2d3ab5e85b337afcf5729381dc783ca89b4f3819e8546db251f0000000000ffffffff5227d943c4fcf726b2b1041b584003367dcad46a80f2515d7297f98c9b28c60a0000000000ffffffffc99a63473be7b1d69373b9994b77e24168eb8982e8f115b704b303dc81cd97110000000000ffffffff69a0ac83f4176deb4608b43fe1d2bb44a82d01d089c33ee2011f84085d4f209b0000000000ffffffff04e803000000000000695121029d650e56a088510de3447b9733283649b474053ed7f6597c3ab9e1e76e01ef882102a5024a176041682eb71507db36c5c2970aff37bb7ccc5a9c3739315991b673702102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee803000000000000695121039d650e56a088510de31578c42365345ce325506a9cbf1d6929fcb1e52b0fbc6c2103e85e114c250e6822b348129f7bcac7d44da577fd3a9a1ad63c3a365c9bbc78242102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee8030000000000006951210282650e56a088510de31278c124663644cc45210ef6ca7f4d34fcb9b32f06e92a2102ec5e434d15380d44877070ae42abf1ed7e914ecd0eff2ee0050b023da88e40162102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae387923fc06000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02473044022027f29d211f66dd2d64425535fbfc955efb23a63bceebba84ae3fd4de3aaa576b022031d0f151d239bf49fbdfd551da6afb2df5cf00e1da3d47b690d11dcf5fe40cbe012102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe350110247304402207e981f9cb7deb5144845d7879ea5953f804a8dd2bdb3e3b5160d8727c0b9fc26022020bd525d063744152f15c47d96b5cc1292b7ad092a7532052bf12c6613d4ccc9012102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501102473044022063342cee4b75a01ea78e6e17d80d16efc295428d8583597882d9654ce275f3ca02202f786c10fa010a5b4fce8d3c8d251443384163ecf11a175e29b24dc571ce4f3c012102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011024730440220588504dd3a496687b9ca373e279486241eb76a7a2ccd8abb37c35623fd8ea025022059456eddfd9f6bf53208210f3de4111234094e7f4cade7939f3a61b723af8dfa012102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe350110247304402200b4a5f272bc2cdba190b12607753c33cc1d6c5cd9aa6d089f7edeea0d2a466370220135e1fb21cc7211036b135828035289b9a50412caa96fdaf25b4f88dc7ac5ee1012102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501102473044022057a09551a955faa93de221d3960095a7f70d119bc532e753761cf0b5bfe9f70d02207e5ba66f807a3110e2f4086c7e36a6077c93b12d283bdcc5c52cde4de4b259f9012102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501100000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03013700ffffffff0200f2052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f0000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (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. @@ -3153,103 +3153,41 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "", "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "64626372743171356865637279727072746864713736796c396a7579656a30657775746e337a746e79767233747c323233643938333561306239336462393037393036656131386634396534306231303665663438623139613639333439303465343639313461333238326135653a317c4d594153534554417c31303030303030303030", + "btc_amount": null, + "fee": null, + "data": "", "decoded_tx": { "version": 2, "segwit": true, - "coinbase": false, + "coinbase": true, "vin": [ { - "hash": "2617b41fa225962b83f0864b40b52546b9452d23d27501a4ee908bdf9b5a7ab3", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "d3ea7489f088d82239411b5aedee6827d952a53a205f08bb621d7b2fd5282680", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "9e72681c5dfcf2d3ab5e85b337afcf5729381dc783ca89b4f3819e8546db251f", - "n": 0, - "script_sig": "", + "hash": "0000000000000000000000000000000000000000000000000000000000000000", + "n": 4294967295, + "script_sig": "013700", "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5227d943c4fcf726b2b1041b584003367dcad46a80f2515d7297f98c9b28c60a", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "c99a63473be7b1d69373b9994b77e24168eb8982e8f115b704b303dc81cd9711", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "69a0ac83f4176deb4608b43fe1d2bb44a82d01d089c33ee2011f84085d4f209b", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false + "coinbase": true } ], "vout": [ { - "value": 1000, - "script_pub_key": "5121029d650e56a088510de3447b9733283649b474053ed7f6597c3ab9e1e76e01ef882102a5024a176041682eb71507db36c5c2970aff37bb7ccc5a9c3739315991b673702102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae" - }, - { - "value": 1000, - "script_pub_key": "5121039d650e56a088510de31578c42365345ce325506a9cbf1d6929fcb1e52b0fbc6c2103e85e114c250e6822b348129f7bcac7d44da577fd3a9a1ad63c3a365c9bbc78242102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae" - }, - { - "value": 1000, - "script_pub_key": "51210282650e56a088510de31278c124663644cc45210ef6ca7f4d34fcb9b32f06e92a2102ec5e434d15380d44877070ae42abf1ed7e914ecd0eff2ee0050b023da88e40162102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae" + "value": 5000000000, + "script_pub_key": "0014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f" }, { - "value": 29999987000, - "script_pub_key": "0014a5f38190611aeed07b44f965c2664fcbb8b9c44b" + "value": 0, + "script_pub_key": "6a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf9" } ], "vtxinwit": [ - "3044022027f29d211f66dd2d64425535fbfc955efb23a63bceebba84ae3fd4de3aaa576b022031d0f151d239bf49fbdfd551da6afb2df5cf00e1da3d47b690d11dcf5fe40cbe01", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "304402207e981f9cb7deb5144845d7879ea5953f804a8dd2bdb3e3b5160d8727c0b9fc26022020bd525d063744152f15c47d96b5cc1292b7ad092a7532052bf12c6613d4ccc901", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "3044022063342cee4b75a01ea78e6e17d80d16efc295428d8583597882d9654ce275f3ca02202f786c10fa010a5b4fce8d3c8d251443384163ecf11a175e29b24dc571ce4f3c01", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "30440220588504dd3a496687b9ca373e279486241eb76a7a2ccd8abb37c35623fd8ea025022059456eddfd9f6bf53208210f3de4111234094e7f4cade7939f3a61b723af8dfa01", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "304402200b4a5f272bc2cdba190b12607753c33cc1d6c5cd9aa6d089f7edeea0d2a466370220135e1fb21cc7211036b135828035289b9a50412caa96fdaf25b4f88dc7ac5ee101", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "3044022057a09551a955faa93de221d3960095a7f70d119bc532e753761cf0b5bfe9f70d02207e5ba66f807a3110e2f4086c7e36a6077c93b12d283bdcc5c52cde4de4b259f901", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011" + "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3", - "tx_id": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3" - }, - "unpacked_data": { - "message_type": "unknown", - "message_type_id": 100, - "message_data": { - "error": "Unknown message type" - } - }, - "btc_amount_normalized": "0.00000000" + "tx_hash": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63", + "tx_id": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63" + } } } ``` @@ -3259,7 +3197,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314` (str, required) - Transaction hash + + tx_hash: `8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809` (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. @@ -3270,18 +3208,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8d178493fe646fed6e53cd6868022b209f0c785d349e893748666edf3be1b7da", + "hash": "4d3d762d1f1a4969446506e4838c7b8de0610fab26b0d3392865ca569c2144fd", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3291,20 +3229,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e7014254c85880c6b34c6ee44b1136dbf13def32e8e58a71bc39d68284101c845cdc0d57cdb8b18a59e59ccc399df" + "script_pub_key": "6a2e7f2fe586259e52b680ac5b3107efd14f5263868caf70a245966604bba646e8e6a97222f38c9b7acdc187f3460f43" }, { "value": 4999955000, - "script_pub_key": "001492b8d704c9efa380416e70f1b303fe9c684ff733" + "script_pub_key": "0014ef05fe482e497897dec9187c938a3627e18a4a92" } ], "vtxinwit": [ - "3044022033b0c31cb2dd0abe9cc95ad655c12a87ae3e537db29f80ca30d856241293c2d602203d1a27233b85c9c15012d466691c18d16fad62aad4f2320318d81bef7ebb54fd01", - "03a6b117058eafcac447e39e209667778a8caa898b5e4947ac4921a762d46276f5" + "304402200a3ddf7e170e5635497621716217a6bb392a26d4de83178f59d1620fc285890b02203cc6af7613eb8252fb5914b5cc25e70d4863e67f46eb0ad7b7d985b2e351831d01", + "023f1326cd06078ea5f8d19f55259ac8c05bcd39e6d7b694ddaa375b4e68ff74b2" ], "lock_time": 0, - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", - "tx_id": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314" + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_id": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3312,7 +3250,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -3373,17 +3311,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3402,7 +3340,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9` (str, required) - The hash of the transaction + + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (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. @@ -3414,17 +3352,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3467,12 +3405,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 561, @@ -3481,14 +3419,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3499,9 +3437,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 560, @@ -3510,9 +3448,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -3522,24 +3460,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3549,9 +3487,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 558, @@ -3559,14 +3497,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "msg_index": 1, "quantity": 1500000000, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "status": "valid", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3576,9 +3514,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 557, @@ -3591,7 +3529,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9` (str, required) - The hash of the transaction to return + + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (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 @@ -3615,12 +3553,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 561, @@ -3629,14 +3567,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3647,9 +3585,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 560, @@ -3658,9 +3596,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -3670,24 +3608,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3697,9 +3635,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 558, @@ -3707,14 +3645,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "msg_index": 1, "quantity": 1500000000, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "status": "valid", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3724,9 +3662,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 557, @@ -3739,7 +3677,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9` (str, required) - The hash of the transaction to return + + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (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 @@ -3758,10 +3696,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3769,7 +3707,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3782,10 +3720,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3793,11 +3731,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -3815,7 +3753,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9` (str, required) - The hash of the transaction to return + + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (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 @@ -3835,27 +3773,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3870,7 +3808,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3914,16 +3852,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3933,9 +3871,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 557, @@ -3945,12 +3883,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -3960,9 +3898,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 554, @@ -3972,24 +3910,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": null, @@ -4002,7 +3940,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9` (str, required) - The hash of the transaction to return + + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (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` @@ -4024,16 +3962,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -4043,9 +3981,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 557, @@ -4055,12 +3993,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -4070,9 +4008,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 554, @@ -4082,24 +4020,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": null, @@ -4114,7 +4052,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t,bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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 @@ -4138,7 +4076,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4148,7 +4086,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4159,7 +4097,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4169,7 +4107,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4180,7 +4118,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4190,7 +4128,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4201,7 +4139,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4211,7 +4149,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4222,7 +4160,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4232,7 +4170,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4249,7 +4187,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t,bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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 @@ -4268,17 +4206,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", - "block_time": 1729539506, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_time": 1729600947, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf:1", + "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4314,23 +4252,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", - "block_time": 1729539502, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_time": 1729600933, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "464aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "supported": true, - "utxos_info": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73:1", + "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "status": "valid" } }, @@ -4338,17 +4276,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 191, - "block_hash": "1fbfa93a4d84ecc6b6fac2b1d9f9796a3ce826e9e3973c30fb528eeb9b715646", - "block_time": 1729539497, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", + "block_time": 1729600919, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8:1", + "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4384,17 +4322,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "block_hash": "512cd864a4fb5f274f85b9ad4481189cf6977e77bf7c7064edd66a680fb6a663", - "block_time": 1729539483, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", + "block_time": 1729600915, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f7eae152229797886fd0a0c038058dc14ebbf321806feccc6eea57e305353dbb4066d049f14d2df4ac8092b8d704c9efa380416e70f1b303fe9c684ff733400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f:0", + "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4402,14 +4340,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4417,7 +4355,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4436,25 +4374,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_hash": "3b12bc987628e1e2db65beb62bf59201295e7a22e69baa3c4eb63a4604767fdd", - "block_time": 1729539470, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2faaacaebe28aa08cb56362cfd203652620ca3c6224b26f4b40655a8e3f0f088", + "block_time": 1729600903, + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "btc_amount": 2000, "fee": 10000, - "data": "0bdf1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "data": "0b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a406c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "supported": true, - "utxos_info": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633:0", + "utxos_info": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "status": "valid" } }, @@ -4471,7 +4409,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t,bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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 @@ -4507,11 +4445,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "open", - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4535,24 +4473,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "block_index": 193, - "event": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729539506, + "block_time": 1729600947, "asset_info": { "divisible": true, "asset_longname": null, @@ -4562,25 +4500,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", "block_index": 193, - "block_time": 1729539506, + "block_time": 1729600947, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, - "utxos_info": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf:1", + "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4612,40 +4550,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "tx_index": 58, - "block_time": 1729539502 + "block_time": 1729600933 }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729539502, + "block_time": 1729600933, "asset_info": { "divisible": true, "asset_longname": null, @@ -4655,9 +4593,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 } ], "next_cursor": 520, @@ -4670,7 +4608,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8,bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw,bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm` (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 @@ -4686,17 +4624,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "quantity": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, "asset_info": { "divisible": true, @@ -4707,22 +4645,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -4732,22 +4670,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 196, - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -4757,30 +4695,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729539528.51405, + "block_time": 1729600969.716605, "btc_amount": 0, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "destination": "", "fee": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, - "utxos_info": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314:1", + "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -4794,7 +4732,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, @@ -4807,7 +4745,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -4827,7 +4765,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4835,14 +4773,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4850,14 +4788,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4872,7 +4810,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4880,7 +4818,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4897,7 +4835,7 @@ Returns the balances of an address Returns the balance of an address and asset + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -4908,21 +4846,25 @@ Returns the balance of an address and asset ``` { - "result": { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } + "result": [ + { + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "asset": "XCP", + "quantity": 82699937196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.99937000" + } + ], + "next_cursor": null, + "result_count": 1 } ``` @@ -4931,7 +4873,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4981,16 +4923,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "asset_info": { "divisible": true, "asset_longname": null, @@ -5002,16 +4944,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "event": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "asset_info": { "divisible": true, "asset_longname": null, @@ -5023,20 +4965,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "event": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5044,20 +4986,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "85578cf8517d8d0416602a14e03f4e979c18881eb240d51d22e1d55ef9dec14d", + "event": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539367, + "block_time": 1729600795, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5069,16 +5011,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "event": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "tx_index": 39, - "utxo": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", - "utxo_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "utxo": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "utxo_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "confirmed": true, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5095,7 +5037,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5134,16 +5076,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "asset_info": { "divisible": true, "asset_longname": null, @@ -5155,16 +5097,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539497, + "block_time": 1729600919, "asset_info": { "divisible": true, "asset_longname": null, @@ -5176,16 +5118,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -5197,20 +5139,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5218,16 +5160,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "event": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539463, + "block_time": 1729600895, "asset_info": { "divisible": true, "asset_longname": null, @@ -5248,7 +5190,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address of the feed + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5283,7 +5225,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -5302,9 +5244,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "0d907b0a040fb6bb7f8923fa0dd88f22253c6495015234101a6d108a4e896f3d", + "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", "block_index": 137, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5312,7 +5254,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539277, + "block_time": 1729600696, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5326,7 +5268,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -5345,14 +5287,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "4a467522ed3f0bbd1fe3a9a3cec0bf6587ac5d29450d469e4069bd28a551c4d6", + "tx_hash": "5541ca001c9c70e380ae489ca063a58d4b0419d994859428514425b4496aa43c", "block_index": 112, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729539171, + "block_time": 1729600591, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5367,7 +5309,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -5386,10 +5328,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5397,7 +5339,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -5410,10 +5352,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5421,11 +5363,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5434,10 +5376,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5445,11 +5387,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5458,10 +5400,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "block_index": 152, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5469,11 +5411,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5482,10 +5424,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3", + "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", "block_index": 149, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "223d9835a0b93db907906ea18f49e40b106ef48b19a6934904e46914a3282a5e:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5493,11 +5435,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539327, + "block_time": 1729600746, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5515,7 +5457,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg` (str, required) - The address to return + + address: `bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp` (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 @@ -5534,10 +5476,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "block_index": 151, - "source": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a:0", - "destination": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", + "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5545,11 +5487,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539336, + "block_time": 1729600754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5567,7 +5509,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -5587,10 +5529,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5598,11 +5540,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5611,10 +5553,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5622,11 +5564,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5635,10 +5577,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "block_index": 152, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5646,11 +5588,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5659,10 +5601,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3", + "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", "block_index": 149, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "223d9835a0b93db907906ea18f49e40b106ef48b19a6934904e46914a3282a5e:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5670,11 +5612,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539327, + "block_time": 1729600746, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5692,7 +5634,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg` (str, required) - The address to return + + address: `bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp` (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` @@ -5712,10 +5654,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "block_index": 151, - "source": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a:0", - "destination": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", + "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5723,11 +5665,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539336, + "block_time": 1729600754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5745,7 +5687,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5774,9 +5716,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5785,7 +5727,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5795,7 +5737,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -5820,7 +5762,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -5833,9 +5775,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5844,7 +5786,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5854,7 +5796,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -5876,7 +5818,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -5896,19 +5838,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5916,7 +5858,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5931,7 +5873,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -5945,19 +5887,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5965,7 +5907,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5980,7 +5922,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6002,7 +5944,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address to return + + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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 @@ -6022,19 +5964,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6042,7 +5984,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6057,7 +5999,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -6071,19 +6013,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6091,7 +6033,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6106,7 +6048,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6128,7 +6070,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -6149,19 +6091,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6169,7 +6111,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6184,7 +6126,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -6198,19 +6140,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6218,7 +6160,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6233,7 +6175,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6255,7 +6197,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address to return + + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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` @@ -6276,19 +6218,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6296,7 +6238,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6311,7 +6253,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -6325,19 +6267,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6345,7 +6287,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6360,7 +6302,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6382,7 +6324,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8` (str, required) - The address to return + + address: `bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw` (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 @@ -6401,16 +6343,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -6424,7 +6366,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -6443,14 +6385,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -6465,20 +6407,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "22e53c1e51e03ae539a6db383da05a9f2eb53088fd05fb42887f4b3a178dc967", + "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -6493,20 +6435,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729539375, + "block_time": 1729600803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "081a1b2db8ae4b03be96796fb52a07a531fb9a198b44b98b7b5864281038f718", + "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -6521,20 +6463,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539371, + "block_time": 1729600799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "85578cf8517d8d0416602a14e03f4e979c18881eb240d51d22e1d55ef9dec14d", + "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -6549,20 +6491,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539367, + "block_time": 1729600795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -6577,7 +6519,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729539353, + "block_time": 1729600782, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6592,7 +6534,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The issuer or owner to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -6615,8 +6557,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -6624,16 +6566,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": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -6641,16 +6583,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": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -6658,16 +6600,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": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -6675,16 +6617,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": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -6692,8 +6634,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": 1729539230, - "last_issuance_block_time": 1729539247, + "first_issuance_block_time": 1729600649, + "last_issuance_block_time": 1729600666, "supply_normalized": "0.00000000" } ], @@ -6707,7 +6649,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The issuer to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -6730,8 +6672,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -6739,16 +6681,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": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -6756,16 +6698,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": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -6773,16 +6715,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": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -6790,16 +6732,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": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -6807,8 +6749,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": 1729539230, - "last_issuance_block_time": 1729539247, + "first_issuance_block_time": 1729600649, + "last_issuance_block_time": 1729600666, "supply_normalized": "0.00000000" } ], @@ -6822,7 +6764,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The owner to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -6845,8 +6787,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -6854,16 +6796,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": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -6871,16 +6813,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": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -6888,16 +6830,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": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -6905,16 +6847,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": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -6922,8 +6864,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": 1729539230, - "last_issuance_block_time": 1729539247, + "first_issuance_block_time": 1729600649, + "last_issuance_block_time": 1729600666, "supply_normalized": "0.00000000" } ], @@ -6937,7 +6879,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -6956,17 +6898,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", - "block_time": 1729539506, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_time": 1729600947, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf:1", + "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7002,23 +6944,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", - "block_time": 1729539502, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_time": 1729600933, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "464aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "supported": true, - "utxos_info": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73:1", + "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "status": "valid" } }, @@ -7026,17 +6968,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 191, - "block_hash": "1fbfa93a4d84ecc6b6fac2b1d9f9796a3ce826e9e3973c30fb528eeb9b715646", - "block_time": 1729539497, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", + "block_time": 1729600919, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8:1", + "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7072,17 +7014,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "block_hash": "512cd864a4fb5f274f85b9ad4481189cf6977e77bf7c7064edd66a680fb6a663", - "block_time": 1729539483, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", + "block_time": 1729600915, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f7eae152229797886fd0a0c038058dc14ebbf321806feccc6eea57e305353dbb4066d049f14d2df4ac8092b8d704c9efa380416e70f1b303fe9c684ff733400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f:0", + "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7090,14 +7032,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7105,7 +7047,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7124,17 +7066,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 185, - "block_hash": "38a2e2019c785e70a5db3c2455f654a178ce61fbf47b70acae523659267f7da9", - "block_time": 1729539463, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "4a06a184078a2111af3df09dc9d57d397867eaf125081feeed37e0babcb42ec2", + "block_time": 1729600895, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f:1", + "utxos_info": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7179,7 +7121,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -7198,20 +7140,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7236,7 +7178,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7265,9 +7207,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7282,7 +7224,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7308,9 +7250,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7325,7 +7267,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7351,9 +7293,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7368,7 +7310,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7394,9 +7336,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7411,7 +7353,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7446,7 +7388,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The source of the fairminter to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7464,10 +7406,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7492,7 +7434,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729539353, + "block_time": 1729600782, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7501,10 +7443,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7529,7 +7471,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729539269, + "block_time": 1729600687, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7541,10 +7483,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7569,7 +7511,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729539252, + "block_time": 1729600670, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7581,10 +7523,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7609,7 +7551,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729539247, + "block_time": 1729600666, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7621,10 +7563,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7649,7 +7591,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7671,7 +7613,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address of the mints to return + + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7689,22 +7631,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7713,22 +7655,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a7486862d3e4456d1632710a164fbd85e2a6bc980edc4c6695939b7a431eb7ea", + "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539264, + "block_time": 1729600683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7737,22 +7679,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6b0b6971f5a8cceedb358c8201024c0dfc905dac2133c6795bdc472b3f266d9c", + "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539260, + "block_time": 1729600679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7761,22 +7703,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5fbc3c5e12fd4dd1997863af1aaca5514e1dcc00b4dd97e42788fa1b75941a73", + "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539256, + "block_time": 1729600674, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7785,22 +7727,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "acbf2d562429fbd98b480585502470dd41c2c1d32bb9119340fef75ebab055d9", + "tx_hash": "9fd58f4965e60f1044c674ce3253a67d37f0d6924d08e6cf1b15b94f8629200f", "tx_index": 15, "block_index": 127, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539235, + "block_time": 1729600653, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7809,22 +7751,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7843,7 +7785,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address of the mints to return + + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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` @@ -7862,22 +7804,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -7919,8 +7861,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will make the bet - + feed_address: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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) @@ -7988,7 +7930,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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) @@ -8044,7 +7986,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8056,7 +7998,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101e74b782ba749f74c6e246c952ebf52c915b6d148c88de85fc2416363250320c400000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff0200000000000000002b6a29df0075da868d50e92cb0584f135ba79bac8cd164b95f9d3e8e9cc0c77dd4b5b1ec1267fb2bc85a80bd9bba052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001012f0620ecc94097bf787349bfda22cb404296e7754d21045f71a924a080ee680100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a2950941e36ff7488a77f215ff66d90b8095322d8e17c9f4e555d3d67cf38574eace02748a4bdfd09bba69bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8078,8 +8020,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be sending the payment - + order_match_id: `df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41` (str, required) - The ID of the order match to pay for + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending the payment + + order_match_id: `0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e` (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) @@ -8131,23 +8073,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41" + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" }, "name": "btcpay", - "data": "434e5452505254590bdf1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "data": "434e5452505254590b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a403fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "0200000000010171ecb259e546e401bbc0b13a6c21191d940b518801248af3e6918f264b11af3f00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff03b80b000000000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b00000000000000004b6a494a85f391ce3167ce238464ad00412ce207c6b06655c322d98b693733b2e9ae78c7f5f491fe6e7aa82f87ae5ea46aa1ea24dc423dc152144c776ae0d8ba15f465df783a4b19e2529832c79f052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001010cd6f6f457fb21e2dbc3c01cbfa7779e84b51ed915ae8ef6f60e00af2e69154a00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03b80b000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f00000000000000004b6a497507a46c0bbb5a4833e1b18e560a6ea2f82b138550721c8569194b54dfe12aa2c88d0b7c374e62cf4ef4a48668d68302c40e519b2ce6c03b5b3ce4bc74a7eb1f68ec4cc3a9e33aba48c79f052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "status": "valid" } } @@ -8160,7 +8102,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address with the BTC to burn + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -8215,7 +8157,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "quantity": 1000, "overburn": false }, @@ -8225,7 +8167,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": "02000000000101697aab377e493650354c22437285438ebef4e43aecd483075724fe8ebb0688dc00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000" + "rawtransaction": "02000000000101a72f14242480b21632bba94265d64a3b612f941b6f46a46b625d22c4df02e47c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000" } } ``` @@ -8235,8 +8177,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93` (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) @@ -8288,21 +8230,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "offer_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf" + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93" }, "name": "cancel", - "data": "434e5452505254594612f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "data": "434e54525052545946c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101fd0f3d2d981f8785bd85d96da4b9829a77e170c79b70c90c5a55c83620c92c3800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff0200000000000000002b6a29f0621f175e4a17631a63f47d22f658f64ff0e594d5611953dd8201a91d17a18895a1578685f3a673bd9bba052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101f157a333d65416897dcebfd9cc1c61bd315a42ac4b476cc9f0df91677c87993900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a297a834c0ddc1a2cb69dd5d5b3a4dbcf37d77b216cc78f5857fcd9f1c0fae5bef5afe9c77e2e9b8532049bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "status": "valid" } } @@ -8315,7 +8257,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -8370,7 +8312,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8389,7 +8331,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101cf6bc92f6bdd3d6e1b54f236267378d1890fab3277a2c19dc4ce6e24dbe55f2000000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000226a20cda6d28834c0d19d727300aa3110b367c79c6e55dbe8b7bd464fddef251e8e2caabc052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101a3a6fbc1f3b0f09ea9a01e3119309d2030581ba8e65304208b6d27a61dc487fe00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000226a200fc65feec5bfbddc91e68b576f3c9c2111fee426fd9acf4b155aa07ee9eb1f04aabc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8409,7 +8351,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: `bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy` (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) @@ -8470,7 +8412,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8494,7 +8436,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": "02000000000101ae1c0c30e85892e46aba35588bb2500546a9b77a376ecc44379a5b41f44e79e6020000001600141ead9f7ce72a0aee740fae10fdaafd105fda31abffffffff0200000000000000002c6a2ac191f58839ee9c99ddd7ce2ead0ad6ed986d26681b995c0fc0783aaf1f32d2b4471d1db523300c644aa2b0540a27010000001600141ead9f7ce72a0aee740fae10fdaafd105fda31ab02000000000000", + "rawtransaction": "02000000000101c2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef02000000160014fbceb7810513954604a3136dad2275da3265619dffffffff0200000000000000002c6a2a24df52efb3b67f6f90ecc48a6f2ab9092079082f106ae9340473e7b524317d24f0ed438b09af56d45bafb0540a2701000000160014fbceb7810513954604a3136dad2275da3265619d02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8520,7 +8462,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -8575,14 +8517,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -8601,7 +8543,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001014d9d408c8aa28d263c6236e7ce9326c088a7c77733b15208936bba69fc66892b00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000236a21b9a0f3a14e8bd2b22c2973f10084449fa6342781e08c138982b0be1ddd8a2e28bc6fbc052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001015a4cdb86cc3604b095e5c9cf0ca45f2a55bcfaae99faa5581256d43be396a4e900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a21d6996394366e74123d83b3f5130d0e9f59db3f675e8bc28db74ae4f633a2ca6e9d6fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8622,10 +8564,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -8686,10 +8628,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "transfer_destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "lock": false, "reset": false, @@ -8702,7 +8644,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": "020000000001017903c0d3e85e6f55c818ff03b337e7667d08b9f04bf47baea1dd4ae822a742c200000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff032202000000000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b0000000000000000236a2163c004dfeca2b4a7a468f25c25e79c0bfd8a54da1aecdc196d5a885e0d13109e1585b2052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "0200000000010171bd23ee4ecbad6270dbb8810e7b0c320710a3ada835f63ab744972cf8d6151400000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff032202000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f0000000000000000236a21c35eb58725aa4bc7ec220cfeccefcfeb76b826ddc8bfa91fdbcf88864e7d4fcc3985b2052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8731,9 +8673,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t,bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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` @@ -8790,16 +8732,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", 1 ], [ "MYASSETA", - "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", 2 ] ], @@ -8807,26 +8749,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a5f38190611aeed07b44f965c2664fcbb8b9c44b80f7eae152229797886fd0a0c038058dc14ebbf3218f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f80a7623a666dd6367f02aa9a43d4bddcb525cdc9448f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "0200000000010474586626d8d2dd94f8aa07f2aa1d928f1e8a6dabbc8d8cb03892249493f4f89300000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff4def0cdb59f17f28ce1f4b58f69b4c99e3fd1999f6d084a35cd458008bcd780600000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffffb8487c0f75f9841acc48f090931607d874d448815361ab44c83345b2802cd25300000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff6ae80d8015b049e741ea2a843d331c3d76ceae2a7efcebc95584b5ef699f990f00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff03e80300000000000069512103541391f6ecc5b04cd369fa68c3d9c3db53eda15c58f5889b22209590581877a2210253b3e4220c9a1e507851e852563b0a9d8e1d10b45470154cf563c3e30fded8ba2102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee803000000000000695121035b1391f6ecc5b04cd34a8d053110547be10cbbb2849b57e9f0c2f3df93a0ce82210297f82cd5e67b4c72efc6683d869bcaa58b90d3faef8334c3d72ba68f63b1f4482102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae14f316a804000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000002000002000002000000000000", + "rawtransaction": "020000000001046601e2fc94b15d43cd1694b794b22d093bf1e481390b53480eeadb7d150a373e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff93e5ca8d8fe6183134e853a534288ef5b3028469940514fce9b163e0411fcc3700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff48cf3f2ea59a29a2616529af6dd6c311cf5bbf354cd30a8fe33be958224da9d700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff63af512919afa2f89e873112d5c9e3dc2213c851d83402a5d21ce1b70861cb3c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03e80300000000000069512102320ace28b1954fd5eaa805b9a093dfc6bda5b56d8b8480439d4e4ed3e89b8b752102fdb2620f570b48a8c24e6f73aa4c261fac0e41244e818533302896e47a490ddf21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121023d0ace28b1954fd5ea8b72d4525a9ae8f55164b94a99cb35fcc54c0d7e29b75c210264edaaa835312ec51478187100d665cb11d2f6018348c1bc1260f3881626215f21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53ae14f316a804000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8842,7 +8784,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -8900,7 +8842,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8917,7 +8859,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -8931,7 +8873,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "0200000000010110f461a2b6b7d0ceb56a3c36070c4d6b502e5a4dfcef7fe4e8feb929d0a116a800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000356a33c4475277dd8914c093baaf2098c073c7f3417cbb37527cadf7775408a206f94d833711d4e20a9a572aa60bce74645d153d1edc51b8052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001010cd6becb5b812e053ce82398841af335c3326030852f5700a7ee69bbf438548e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000356a331366e9da62e0dd3f6539b19398a1661537b0beb11865424fe5ea7d272a9109f6212182f63fa0d74a9996dd319ceabae1b03fdb51b8052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -8957,8 +8899,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address that will be receiving the asset + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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 @@ -9018,8 +8960,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9035,19 +8977,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f7eae152229797886fd0a0c038058dc14ebbf321", + "data": "434e54525052545902000000000000000100000000000003e880a7623a666dd6367f02aa9a43d4bddcb525cdc944", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101ab2a29267ea80990ba798a8a5cbef290454d47632ba663cb826557dc9d5a67a800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000306a2e3ecd36925c62562e166af268e836db0d632d65538dec2ad71ff6f281d05f36c8c4aef6e3ca6e9cd358dd47ea8d8076b9052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101a5a437abfceb2769bd0f0e917d7f3676a34a8afa323a4daaa36de808006d263100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000306a2e8ddaf280f664ff4c0ed800cc42e43c116bc5e2da5d3ebf769ff792738e7e4285f4872d2d19e2ba498729ce55590276b9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "memo": null, "quantity_normalized": "0.00001000" } @@ -9061,8 +9003,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be sending - + destination: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending + + destination: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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 @@ -9116,23 +9058,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f7eae152229797886fd0a0c038058dc14ebbf32107ffff", + "data": "434e5452505254590480a7623a666dd6367f02aa9a43d4bddcb525cdc94407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001018f03db23da65dbf8feaf35c15745e3be5a97329d410a2f3e04cc91e3e44adb2c00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000236a21fb348a5109f4fa1d707ceaacaedab9d38472cdc9ba4aef08b2a1bd6b49714a9c466fbc052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101121eff4d7fe23c2ce07956b290778592f93235555d76b67ce599f5d5a3ae495f00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a2197add0b35ef9f146b1b92c6711f007727850807dce1e6b772da2fabe855df566646fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "flags": 7, "memo": "ffff" } @@ -9146,8 +9088,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: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm` (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` @@ -9200,8 +9142,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "quantity": 1000 }, "name": "dispense", @@ -9210,7 +9152,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "020000000001013316e120a1aeb734bcf6abbd5750b2a4a1f55bea04ff5bb94dc6de49eab03a4302000000160014f7eae152229797886fd0a0c038058dc14ebbf321ffffffff03e80300000000000016001492b8d704c9efa380416e70f1b303fe9c684ff73300000000000000000c6a0a7ba2439c1c0493c6d060e3c1082701000000160014f7eae152229797886fd0a0c038058dc14ebbf32102000000000000", + "rawtransaction": "0200000000010175b18150401657641ee43dfb036ef57abc495a36f7dcd26fc467fd3e3b898f0702000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc944ffffffff03e803000000000000160014ef05fe482e497897dec9187c938a3627e18a4a9200000000000000000c6a0a4e0b2c0c8cea4b48785ae3c1082701000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc94402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9227,7 +9169,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be issuing the asset + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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: `` @@ -9312,7 +9254,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9343,7 +9285,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101ad72cbea3815af8e56b49732764ac81277d1379a63035d16d2b16668d9609fb800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000316a2f8bd5c040721f2a1ae4da92172aa2844f3ab149270964fe885d67263a582967abb9128220450562911ce6677777336b3bb9052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001013a2e04e9da414ac6991ea3cdb28646adb691759462c59948ed27b91bcb9b308900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000316a2f17bb6968a82536ec6d57a0823865a21b6601fae19646540989fdb79d042008a3f13e3617ba73d58d6c7d913ace48fd3bb9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9376,7 +9318,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address that will be minting the asset + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -9431,13 +9373,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9449,7 +9391,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": "020000000001018ab515b6df8a396c3fbb515116f7b9534ec078b7c298c84b22bff5b986a604b300000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000166a14c8a692df72713aabad8e6bbf43388f2773f4ad7d69bf052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101b84185f100595d8a2231c365065cd5aabdb9f3ce53694e59e948f042fda9609600000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000166a14f49a5390f81369f8bb2dce5e4e6d9756846e2f0769bf052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9467,10 +9409,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: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address from which the assets are attached + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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: `082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3:3` (str, optional) - The utxo to attach the assets to + + destination: `3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9523,8 +9465,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3:3", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9537,12 +9479,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171356865637279727072746864713736796c396a7579656a30657775746e337a746e79767233747c303832613833323839653835383937373365386266303633306564393731393436656639653366383232666336343530653665353862333763343662326366333a337c5843507c31303030", + "data": "434e545250525459646263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c336363623631303862376531316364326135303233346438353163383133323264636533633964353132333138373965663861326166313932393531616636333a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106c388b2915db493176b5c1c0af0e59511a2e670be35eaa56e0500aa9f8f03ffd100000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff5103b9b4325e84d7594ad95a315511d9ba748040f7165478f8fd1dafe5f4101400000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff491d515143d422464a4a4c52070bfe540ec70b409faea08461f5e91c19f1119800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff361617f69a0bab11945b69416173fd4d20dc7afda833112fe2494491e5d604bf00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff70993d1ed418241c419395c65954f1dc4dd6812490b0d105fd80e3aae364bc4f00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff3202b35dfac6c5b0398beeb2caacbe45131462617bb783fe5a78ea829d82bb9500000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff04e8030000000000006951210204d355adf9a03ffeec0b15ccd8b5f662a594c7e5f6b2488565a0ee8d2f314a5f21021a16389285927431bf8ee47f34b6936c237a32eb7b692bd745988197c92de6c22102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee8030000000000006951210304d355adf9a03ffeec574eca92f4ff2aa7cb91e3bca95cc521e7b68c3a3f4b372103524335ce958d283ebc8dab3872bec32063217bf83f3f6a9317938495c528b6172102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee803000000000000695121032ed355adf9a03ffeec5d14c999fbf46fc8bff2fab5fb0ac517d486e95e067c432102637a01f8f0eb115b8feb930a40d8a01657144b9d095a5fab75a0b3f6f11ed45c2102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aec36d22fc06000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106a67fe03efb16d6e309a3e356c20c0420c0ca7be22518c41c7f20e62dfbd9bbe200000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffffb9239ad8ce18977d54bd74df9df75aab9d1d3a91ae1e01acbe728d48b8c3641100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff505475308ab54bb36b0dc3bb7debd5993b3aed59e44cb558407b819980b6792700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff8dd2a5c9e4deb858eb72f2092417cbe00f4129bdf600eb1232ffc1dac9112b7e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff287eaec105fdf0dac03f8e84d953345fa9f6badf2d99c97a0044fca799e2fffd00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0fab5a0c757b882994a2ce55018fcc45f38e7137d0b87b5327ae9e4da221b6f500000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff04e8030000000000006951210254284f4eb2a32f1bae3931e200983dc6904c6c3ec9e68ee571b60451e36e5b3b210335e2ca1a5706cac1222cc9abd3f995bb05cf2270f01ce65c4ed74485d931c40621030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee8030000000000006951210354284f4eb2a32f1bae6531b617dd3dd4c14b7e78cee2d3e423b60316b62c1258210275bc900a060888c92c22caff93afdcb15ec62a63a910a1411b851ed5d635c53a21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121027e284f4eb2a32f1bae3c35b741d63ccbfd3a4f31cfe0d0e0478e3627d51423482102468ea26e656dbbaa1546ffcea19ced8969ff4f05917193207db427e7ef00f4a721030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aec36d22fc06000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9559,8 +9501,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: `d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to detach the assets to + + utxo: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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 @@ -9614,8 +9556,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9628,12 +9570,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964643337303864383039346464363764666162343932323031363732336164366136323464323735336233336236316163303437303736623038373933316666393a307c626372743171356865637279727072746864713736796c396a7579656a30657775746e337a746e79767233747c5843507c31303030", + "data": "434e54525052545964326664623933383036303439643064616333333237313465393361336639663563326663623366383861373662366263373339393338303731656532616334613a307c6263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031023a34b4e24fc742e8ef0708e9c952698bd84d884170649d86a917ba5901fa901000000160014f9b38e2d42efb9307785475778151ec301966ac2ffffffffae1c0c30e85892e46aba35588bb2500546a9b77a376ecc44379a5b41f44e79e600000000160014f9b38e2d42efb9307785475778151ec301966ac2ffffffff40f78e5b2ae900b1352a1ee4016317a453969ff556522ae9bd8e41e97807604a01000000160014f9b38e2d42efb9307785475778151ec301966ac2ffffffff04e80300000000000069512103151398cd88d8b1698ef01c9aa9e534c006fdca2289db6990ecbc522b55be218c21021f46bdfb6cce4502b4d93e18c32493ab7d0ecde235ec572ff1d81a4960464c5b21021b4822e4a2bb6c63f96f32ad6bf8bd9d3f424eb633146afb12bee8b898842c3753aee80300000000000069512103151398cd88d8b1698ea34ecbaeed3b9d0dfc9570d4856fdbeab9413d50f6262121024513efbf228e0611a4873b5fc6268ef573518bf963b5057cb7cc0d17670b088121021b4822e4a2bb6c63f96f32ad6bf8bd9d3f424eb633146afb12bee8b898842c3753aee803000000000000695121023f1398cd88d8b1698efa01dfece678d8668ea36adc8f6f9788da3349618713e321032d768ccd5bfc7663d0ef5f2ef110f7994a3bfe8006df3519c0b9797954717c7621021b4822e4a2bb6c63f96f32ad6bf8bd9d3f424eb633146afb12bee8b898842c3753ae11780b2701000000160014f9b38e2d42efb9307785475778151ec301966ac202000002000002000000000000", + "rawtransaction": "020000000001031add506e93ba9560878795fdf100510018f974082abe588ad8bba1ace3caca4401000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffffc2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef00000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff5e8616e204ea3b6435fd5478bd31a0f2cef73410f4508bf4457b91ed3bb769ae01000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff04e80300000000000069512103de0a2b134f395690841d679f9c6bd78eb23b85e481e87fcddb8de430a3af88a321022240eabbb76de12108b7f1f6710d18320d56a69e7376d35aa598824f5cfbc806210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103de0a2b134f395690844a6dc9cf388bd8b86ad0e0d4eb2b81dd8ff577a1ec8aaf21032607fcb5b262e77109e3b2a33913083c5644accd632ad252a59f931d17f09db8210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103f40a2b134f3956908449388c99649bc1d248e3a884e12bcdbfec8703909dbfbf210313748f82840cd24731d1c495436b7b503e309ea61241e53893fae1786fc2f190210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353ae11780b2701000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9688,8 +9630,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -9697,16 +9639,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "owner": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "owner": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "divisible": true, "locked": false, "supply": 100000000000, @@ -9714,16 +9656,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729539363, - "last_issuance_block_time": 1729539363, + "first_issuance_block_time": 1729600791, + "last_issuance_block_time": 1729600791, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -9731,16 +9673,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -9748,16 +9690,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -9765,8 +9707,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" } ], @@ -9794,8 +9736,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -9803,8 +9745,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729539213, - "last_issuance_block_time": 1729539226, + "first_issuance_block_time": 1729600633, + "last_issuance_block_time": 1729600646, "supply_normalized": "100.00000000" } } @@ -9835,7 +9777,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9843,14 +9785,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9858,7 +9800,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9876,7 +9818,7 @@ Returns the balance of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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. @@ -9886,21 +9828,25 @@ Returns the balance of an address and asset ``` { - "result": { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } + "result": [ + { + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "asset": "XCP", + "quantity": 82699937196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.99937000" + } + ], + "next_cursor": null, + "result_count": 1 } ``` @@ -9938,9 +9884,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9955,7 +9901,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9981,9 +9927,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9998,7 +9944,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10024,9 +9970,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10041,7 +9987,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10067,9 +10013,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10084,7 +10030,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10110,9 +10056,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10127,7 +10073,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10189,13 +10135,13 @@ Returns the orders of an asset { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10209,7 +10155,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10229,13 +10175,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10249,7 +10195,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10269,13 +10215,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "tx0_index": 49, - "tx0_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 50, - "tx1_hash": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10289,7 +10235,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10369,20 +10315,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10390,20 +10336,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "178933543378d126cc11377c3aebf77bdd65a28f9ff63b131f19f0d415810246", + "event": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10411,20 +10357,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10432,20 +10378,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "event": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10457,16 +10403,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10526,12 +10472,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -10543,16 +10489,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "event": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539514, + "block_time": 1729600956, "asset_info": { "divisible": true, "asset_longname": null, @@ -10564,16 +10510,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "divisible": true, "asset_longname": null, @@ -10585,16 +10531,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "divisible": true, "asset_longname": null, @@ -10606,16 +10552,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "asset_info": { "divisible": true, "asset_longname": null, @@ -10655,20 +10601,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10712,14 +10658,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "178933543378d126cc11377c3aebf77bdd65a28f9ff63b131f19f0d415810246", + "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -10734,20 +10680,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -10762,20 +10708,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -10790,20 +10736,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -10818,7 +10764,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729539213, + "block_time": 1729600633, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10852,10 +10798,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10863,7 +10809,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -10876,10 +10822,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10887,7 +10833,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -10900,10 +10846,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca", + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", "block_index": 189, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10911,7 +10857,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539479, + "block_time": 1729600911, "asset_info": { "divisible": true, "asset_longname": null, @@ -10924,10 +10870,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02", + "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", "block_index": 157, - "source": "4a600778e9418ebde92a5256f59f9653a4176301e41e2a35b100e92a5b8ef740:0", - "destination": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", + "destination": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10935,7 +10881,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539363, + "block_time": 1729600791, "asset_info": { "divisible": true, "asset_longname": null, @@ -10948,10 +10894,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "4a600778e9418ebde92a5256f59f9653a4176301e41e2a35b100e92a5b8ef740", + "tx_hash": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e", "block_index": 156, - "source": "dab7e13bdf6e664837899e345d780c9f202b026868cd536eed6f64fe9384178d:0", - "destination": "4a600778e9418ebde92a5256f59f9653a4176301e41e2a35b100e92a5b8ef740:0", + "source": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", + "destination": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10959,7 +10905,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539357, + "block_time": 1729600786, "asset_info": { "divisible": true, "asset_longname": null, @@ -11010,9 +10956,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11021,7 +10967,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11031,7 +10977,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -11047,9 +10993,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "dc00a1ed7cfb037439c2160332f950d8b34d85c8b13502ffb694562001335701", + "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", "block_index": 142, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11058,7 +11004,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11068,7 +11014,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539298, + "block_time": 1729600717, "asset_info": { "divisible": true, "asset_longname": null, @@ -11084,9 +11030,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "35ec70b0a2764c50b4609f0e32541676c795160f154238d9339df8428ade9320", + "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", "block_index": 150, - "source": "mnizsbWSmdSHrHsW3qa6HXoXc5Gg71TiEe", + "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11094,10 +11040,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a0a8441287387458928a3041406e12121d9f7904945859710151b6f6d1e3197", - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11105,7 +11051,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539332, + "block_time": 1729600750, "asset_info": { "divisible": true, "asset_longname": null, @@ -11121,18 +11067,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11142,7 +11088,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -11167,7 +11113,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - The address to return + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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` @@ -11180,9 +11126,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11191,7 +11137,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11201,7 +11147,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -11251,7 +11197,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11259,7 +11205,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11268,7 +11214,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11276,7 +11222,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11285,7 +11231,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11293,7 +11239,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11302,7 +11248,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11339,27 +11285,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11374,7 +11320,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -11388,27 +11334,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae", + "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", "block_index": 147, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11423,7 +11369,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539319, + "block_time": 1729600737, "asset_info": { "divisible": true, "asset_longname": null, @@ -11437,19 +11383,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11457,7 +11403,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11472,7 +11418,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -11486,19 +11432,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11506,7 +11452,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11521,7 +11467,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -11564,8 +11510,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -11573,8 +11519,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729539371, - "last_issuance_block_time": 1729539371, + "first_issuance_block_time": 1729600799, + "last_issuance_block_time": 1729600799, "supply_normalized": "0.00000000" } ], @@ -11606,10 +11552,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11634,7 +11580,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11674,22 +11620,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "178933543378d126cc11377c3aebf77bdd65a28f9ff63b131f19f0d415810246", + "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", "tx_index": 13, "block_index": 125, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11698,22 +11644,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11722,22 +11668,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11756,7 +11702,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk` (str, required) - The address of the mints to return + + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (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` @@ -11775,22 +11721,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -11839,9 +11785,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11856,7 +11802,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11882,9 +11828,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11899,7 +11845,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11925,9 +11871,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11942,7 +11888,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11968,9 +11914,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "block_index": 188, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11985,7 +11931,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12011,9 +11957,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12028,7 +11974,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12063,7 +12009,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf` (str, required) - The hash of the transaction that created the order + + order_hash: `c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93` (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. @@ -12075,9 +12021,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12092,7 +12038,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12124,7 +12070,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f` (str, required) - The hash of the transaction that created the order + + order_hash: `0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40` (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 @@ -12151,13 +12097,13 @@ Returns the order matches of an order { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12171,7 +12117,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12191,13 +12137,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12211,7 +12157,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12241,7 +12187,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f` (str, required) - The hash of the transaction that created the order + + order_hash: `0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40` (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 @@ -12260,15 +12206,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "btc_amount": 2000, - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "status": "valid", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "btc_amount_normalized": "0.00002000" } ], @@ -12312,9 +12258,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12332,7 +12278,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729539470, + "block_time": 1729600903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12358,9 +12304,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "block_index": 188, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12378,7 +12324,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12404,9 +12350,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12424,7 +12370,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12450,9 +12396,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12470,7 +12416,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12496,9 +12442,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12516,7 +12462,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12579,13 +12525,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12602,7 +12548,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12622,13 +12568,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12645,7 +12591,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12665,13 +12611,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "tx0_index": 49, - "tx0_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 50, - "tx1_hash": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12688,7 +12634,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539395, + "block_time": 1729600834, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12746,13 +12692,13 @@ Returns all the order matches { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12766,7 +12712,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12786,13 +12732,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12806,7 +12752,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12826,13 +12772,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "tx0_index": 49, - "tx0_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 50, - "tx1_hash": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12846,7 +12792,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13014,66 +12960,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "8f53b933c75c6287892dd9a2784df9a8083cc903e69796d5774d348f9604e349", + "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", "block_index": 121, - "source": "bcrt1qwt93j38jza7mma9luld0e0wgdk7h44wj54tzqt", + "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729539209, + "block_time": 1729600628, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2a9b510e5f5aca3dae44ce8a998879757edd7cd63f153b744cf89a510dfbfdd2", + "tx_hash": "5525a4b2fbe66c394a65f4c2793698365672e5fc073693b4900c7e15a5b81615", "block_index": 120, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729539204, + "block_time": 1729600624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "60d3eb784e7053d9ea02fec8b1ace9d88a1d88b89b2e0e6f07fba180a8740c02", + "tx_hash": "b2afd9dd0cc770db309c03dfbf91178206b73bc188f9bc4bcbd40c9e5e522747", "block_index": 119, - "source": "bcrt1qrxzhp76gz0ylrz27xh6m0fuag607eflff98khh", + "source": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729539200, + "block_time": 1729600619, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "33477f55f645d71f9cdd38e175d3267ca3dd704eeeb61773d02dc2c609d88c26", + "tx_hash": "1f653e4ae30ba8e397ef6cc128249cce0fa9e5b6dcb257d24e740a2b22223e2c", "block_index": 118, - "source": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729539196, + "block_time": 1729600615, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "3d3ebe47cdd9eb4144552306c7e10f02ea01c8e1ddb9f6dfbfa88660099997a2", + "tx_hash": "5bdfa64b6a4284aab2143f1f7f88c9bd0a90c767c6e467e05f4d6331ecd8a0e1", "block_index": 117, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729539192, + "block_time": 1729600611, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13118,9 +13064,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13129,7 +13075,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13139,7 +13085,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -13155,9 +13101,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "dc00a1ed7cfb037439c2160332f950d8b34d85c8b13502ffb694562001335701", + "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", "block_index": 142, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13166,7 +13112,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13176,7 +13122,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539298, + "block_time": 1729600717, "asset_info": { "divisible": true, "asset_longname": null, @@ -13192,9 +13138,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "35ec70b0a2764c50b4609f0e32541676c795160f154238d9339df8428ade9320", + "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", "block_index": 150, - "source": "mnizsbWSmdSHrHsW3qa6HXoXc5Gg71TiEe", + "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13202,10 +13148,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a0a8441287387458928a3041406e12121d9f7904945859710151b6f6d1e3197", - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13213,7 +13159,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539332, + "block_time": 1729600750, "asset_info": { "divisible": true, "asset_longname": null, @@ -13229,18 +13175,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13250,7 +13196,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -13275,7 +13221,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0` (str, required) - The hash of the dispenser to return + + dispenser_hash: `86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9` (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. @@ -13287,9 +13233,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13298,7 +13244,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13308,7 +13254,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -13330,7 +13276,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0` (str, required) - The hash of the dispenser to return + + dispenser_hash: `86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9` (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 @@ -13350,19 +13296,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13370,7 +13316,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13385,7 +13331,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -13399,19 +13345,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13419,7 +13365,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13434,7 +13380,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -13476,20 +13422,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -13514,7 +13460,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2` (str, required) - The hash of the dividend to return + + dividend_hash: `5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c` (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. @@ -13526,20 +13472,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -13561,7 +13507,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c` (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 @@ -13584,12 +13530,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "tx_index": 41, - "utxo": "dab7e13bdf6e664837899e345d780c9f202b026868cd536eed6f64fe9384178d:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "utxo": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "divisible": true, "asset_longname": null, @@ -13601,16 +13547,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "address": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "divisible": true, "asset_longname": null, @@ -13656,27 +13602,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 561, @@ -13685,14 +13631,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -13703,9 +13649,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 560, @@ -13714,9 +13660,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -13726,24 +13672,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -13753,9 +13699,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 558, @@ -13783,15 +13729,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } } ``` @@ -13869,16 +13815,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -13888,9 +13834,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 557, @@ -13900,12 +13846,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -13915,9 +13861,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 554, @@ -13927,39 +13873,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "divisible": true, "asset_longname": null, @@ -13969,36 +13915,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "block_time": 1729539510 + "block_time": 1729600951 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "block_time": 1729539510 + "block_time": 1729600951 } ], "next_cursor": 536, @@ -14054,27 +14000,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14089,7 +14035,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -14103,27 +14049,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae", + "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", "block_index": 147, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14138,7 +14084,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539319, + "block_time": 1729600737, "asset_info": { "divisible": true, "asset_longname": null, @@ -14152,19 +14098,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14172,7 +14118,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14187,7 +14133,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -14201,19 +14147,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14221,7 +14167,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14236,7 +14182,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -14278,10 +14224,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14289,7 +14235,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -14302,10 +14248,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14313,11 +14259,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -14326,10 +14272,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14337,7 +14283,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -14350,10 +14296,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14361,11 +14307,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -14374,10 +14320,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14385,11 +14331,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -14427,14 +14373,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -14449,20 +14395,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "22e53c1e51e03ae539a6db383da05a9f2eb53088fd05fb42887f4b3a178dc967", + "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -14477,20 +14423,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729539375, + "block_time": 1729600803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "081a1b2db8ae4b03be96796fb52a07a531fb9a198b44b98b7b5864281038f718", + "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -14505,20 +14451,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539371, + "block_time": 1729600799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "85578cf8517d8d0416602a14e03f4e979c18881eb240d51d22e1d55ef9dec14d", + "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -14533,20 +14479,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539367, + "block_time": 1729600795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02", + "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "issuer": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "transfer": false, "callable": false, "call_date": 0, @@ -14561,7 +14507,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539363, + "block_time": 1729600791, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14576,7 +14522,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c` (str, required) - The hash of the transaction to return + + tx_hash: `83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52` (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. @@ -14588,14 +14534,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -14610,7 +14556,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14642,16 +14588,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -14665,7 +14611,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de` (str, required) - The hash of the transaction to return + + tx_hash: `9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155` (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. @@ -14678,16 +14624,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -14721,9 +14667,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "block_index": 138, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14731,14 +14677,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539280, + "block_time": 1729600700, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "0d907b0a040fb6bb7f8923fa0dd88f22253c6495015234101a6d108a4e896f3d", + "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", "block_index": 137, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14746,7 +14692,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539277, + "block_time": 1729600696, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14760,7 +14706,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec` (str, required) - The hash of the transaction to return + + tx_hash: `dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803` (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. @@ -14772,9 +14718,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "block_index": 138, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14782,7 +14728,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539280, + "block_time": 1729600700, "fee_fraction_int_normalized": "0.00000000" } } @@ -14812,10 +14758,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14840,7 +14786,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729539353, + "block_time": 1729600782, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14849,10 +14795,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14877,7 +14823,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729539269, + "block_time": 1729600687, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14889,10 +14835,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14917,7 +14863,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729539252, + "block_time": 1729600670, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14929,10 +14875,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14957,7 +14903,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729539247, + "block_time": 1729600666, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -14969,10 +14915,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14997,7 +14943,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15066,22 +15012,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -15090,22 +15036,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a7486862d3e4456d1632710a164fbd85e2a6bc980edc4c6695939b7a431eb7ea", + "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539264, + "block_time": 1729600683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -15114,22 +15060,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6b0b6971f5a8cceedb358c8201024c0dfc905dac2133c6795bdc472b3f266d9c", + "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539260, + "block_time": 1729600679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -15138,22 +15084,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5fbc3c5e12fd4dd1997863af1aaca5514e1dcc00b4dd97e42788fa1b75941a73", + "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539256, + "block_time": 1729600674, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -15162,22 +15108,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "15cbb083e55df10a939e89ba7e6289f7573b1ae141c47d85c66a5470173f096c", + "tx_hash": "187826b679691eb2ff6d02b9679bfeca9f1e76abb8b1d0b8c0bc2cfa337245f8", "tx_index": 17, "block_index": 129, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "fairminter_tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539243, + "block_time": 1729600662, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -15196,7 +15142,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0` (str, required) - The hash of the fairmint to return + + tx_hash: `5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72` (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. @@ -15207,22 +15153,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -15240,7 +15186,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7,bcrt1qrxzhp76gz0ylrz27xh6m0fuag607eflff98khh` (str, required) - The addresses to search for + + addresses: `bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy,bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma` (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. @@ -15259,8 +15205,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae", - "address": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7" + "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", + "address": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy" }, { "vout": 2, @@ -15268,8 +15214,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02", - "address": "bcrt1qrxzhp76gz0ylrz27xh6m0fuag607eflff98khh" + "txid": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", + "address": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma" } ], "next_cursor": null, @@ -15282,7 +15228,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8` (str, required) - The address to search for + + address: `bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw` (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 @@ -15298,28 +15244,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a" + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155" }, { - "tx_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41" + "tx_hash": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465" }, { - "tx_hash": "223d9835a0b93db907906ea18f49e40b106ef48b19a6934904e46914a3282a5e" + "tx_hash": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671" }, { - "tx_hash": "69d649846d6b6d72ac5a26711a5b63a45bd293920c3bd9a2ee41d48f631fc6ab" + "tx_hash": "184dd6bb2594bb7e7b2a423ff30889d2b158a92d4eddb5636b4821bea502d080" }, { - "tx_hash": "49a50eaab7725193aac10cc01d4bc6f7eae484aed04c6798c767ef861ed08cb1" + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" }, { - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca" + "tx_hash": "ebcfb23c56795fb111ae0af96d7afc0c04d32e1e33a916d4de6298d5694c3acc" }, { - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de" + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6" }, { - "tx_hash": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0" + "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6" } ], "next_cursor": null, @@ -15332,7 +15278,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92` (str, required) - The address to search for. + + address: `bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw` (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. @@ -15346,7 +15292,7 @@ Get the oldest transaction for an address. { "result": { "block_index": 8, - "tx_hash": "1fefaa944cd2b172be2e5e7a9aa5941928348c48a8e109c9c7af463795ee7df7" + "tx_hash": "6d129d2a3f91a86fee7a32c934229380ce59e1a886037b66785a5788ceaa68d8" } } ``` @@ -15356,7 +15302,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7` (str, required) - The address to search for + + address: `bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy` (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 @@ -15377,7 +15323,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae" + "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2" } ], "next_cursor": null, @@ -15390,7 +15336,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t` (str, required) - Address to get pubkey for. + + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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. @@ -15402,7 +15348,7 @@ Get pubkey for an address. ``` { - "result": "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011" + "result": "030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e" } ``` @@ -15411,7 +15357,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9` (str, required) - The transaction hash + + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (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. @@ -15423,7 +15369,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101022b2b7328c1ce8fecdfd2b82c1f92afff11e172dff021955a515c01a8ecba8a0100000000ffffffff03e803000000000000160014f9b38e2d42efb9307785475778151ec301966ac200000000000000000c6a0a7d82b6f3e055a09e357cdced082701000000160014e45967b7fecba92e6994bb5717d89bed54a185bf0247304402201b69df03b74908caced340d83b3ae8725acd0e9dfa04794749c2476b37dcc78702202ac14b0889b1e66f38545229ef6488f9dd6d365f17c05fe94c2025b2b19b5e89012103514d859a6b04eb531cc4cf85550585f580466b31f72710b8da1de2be597c5e1e00000000" + "result": "020000000001013dfdf08ba098a35f8faf45b2e8766aecfe8f87ce1da847fbcf4d258e70c624b60100000000ffffffff03e803000000000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589000000000000000000c6a0a925e752ab5d15d326204dced0827010000001600147126c968f7e1cd9e1335a14c9336b6d74d73a8b802473044022075d5eea6a3e1d76ab724b1c42e7ae768d9b460fb50531f5c092d38338c262729022046631e2cc901af9c712fea6929ed245eb6e7f45822cca0cb0ec29c01322077330121038e94ba4d0049a559568ec0807dd86fd0d6d15fb01e7ee938979cae58f3fd734500000000" } ``` @@ -15518,27 +15464,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63 }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "quantity": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, "asset_info": { "divisible": true, @@ -15549,22 +15495,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -15574,22 +15520,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 196, - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -15599,30 +15545,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729539528.51405, + "block_time": 1729600969.716605, "btc_amount": 0, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "destination": "", "fee": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, - "utxos_info": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314:1", + "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -15636,7 +15582,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, @@ -15667,19 +15613,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -15689,7 +15635,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, @@ -15702,7 +15648,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314` (str, required) - The hash of the transaction to return + + tx_hash: `8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809` (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 @@ -15722,27 +15668,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63 }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "quantity": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, "asset_info": { "divisible": true, @@ -15753,22 +15699,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -15778,22 +15724,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 196, - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -15803,30 +15749,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729539528.51405, + "block_time": 1729600969.716605, "btc_amount": 0, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "destination": "", "fee": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, - "utxos_info": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314:1", + "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -15840,7 +15786,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index aaffcfd84b..d1d5648664 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -282,6 +282,8 @@ def select_rows( query = f"{query} OFFSET ?" bindings.append(offset) + print(query, bindings) + with start_sentry_span(op="db.sql.execute", description=query) as sql_span: sql_span.set_tag("db.system", "sqlite3") cursor.execute(query, bindings) @@ -1570,7 +1572,7 @@ def get_balance_by_address_and_asset(db, address: str, asset: str): :param str address: The address to return (e.g. $ADDRESS_1) :param str asset: The asset to return (e.g. XCP) """ - return select_row( + return select_rows( db, "balances", select="address, asset, quantity, utxo, utxo_address", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 37b863e53c..ba00f0e089 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": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", "difficulty": 545259519, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", - "block_time": 1729539514, - "previous_block_hash": "34afe554bacdcfaa324f45a80d72cf180633a12b8aacba104787728559bc8361", + "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_time": 1729600956, + "previous_block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", "difficulty": 545259519, - "ledger_hash": "c3899c554834b50a26621c88b4bed68ee702ea293135873cce29ab64692e19bd", - "txlist_hash": "1755b991dcbcb5ac98971c32ef76f8bed5d6653c2fc4b806f47700889c817e16", - "messages_hash": "efc03b7f03dc0759a28ae41e985f9770bc604673efb8b74a167f9072db2dfc15", + "ledger_hash": "e48b67326c9efd18380dad32fbed87d7fe390d83de7bcb3f6b157e6b5ef956f1", + "txlist_hash": "041fd68016df50126076dfb0a738da62ef83347efd3a672e616dad9ca2e7d200", + "messages_hash": "b7551fd65d852da0d472fe3f7ce12b0a39c92b628d3d9d5299215464355fa1f5", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "34afe554bacdcfaa324f45a80d72cf180633a12b8aacba104787728559bc8361", - "block_time": 1729539510, - "previous_block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", + "block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", + "block_time": 1729600951, + "previous_block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", "difficulty": 545259519, - "ledger_hash": "8a0b1ce684e176c0c676d84c2596dc84edf3549bed4a87b135d58660ad0c10ec", - "txlist_hash": "2d4a98efb870a98382b4527647ef00b420d401f16812bb64874dd314d3c28acb", - "messages_hash": "f68ca9795328519c4ea67221557f82ec21f3366411f6b4e26bd956cb59e4e796", + "ledger_hash": "dc5a06cfc520a5d57cafae40d5e79dd7a3c17bbc3136daf6ad97733d332be6f6", + "txlist_hash": "2236faa5272fc565cdf8ae0d25cdcc774d5338b06e526427a7783458ceee8176", + "messages_hash": "f204bc1337b1509f81a1b2244859fbdc2552f60c8e1ae5b60cd99f795a1fc604", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", - "block_time": 1729539506, - "previous_block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_time": 1729600947, + "previous_block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", "difficulty": 545259519, - "ledger_hash": "590a7b2cd73e248089c69df185643958664793017a4fc750dab93b74e86369e5", - "txlist_hash": "9271a5d601790d2e559e9aa9dfb4b67533d401590017b46e2b9aa91733a60676", - "messages_hash": "e81a6a2db04cd967e163318d74fe6aa727da4c463cf2bacc54ecc3d3f0f78d29", + "ledger_hash": "3a315522b7c252ceb1380e21eb29fc5d72017b4d72cc880b59ae9798537ba933", + "txlist_hash": "e837b2dad7d07a242cbaf531cebcee8ec450f76e549feb61ad16da9b4d51457e", + "messages_hash": "96e9b84c58dbb670f928c5c78c4e418d82c442aba945ae83066e5a711433b078", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", - "block_time": 1729539502, - "previous_block_hash": "1fbfa93a4d84ecc6b6fac2b1d9f9796a3ce826e9e3973c30fb528eeb9b715646", + "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_time": 1729600933, + "previous_block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", "difficulty": 545259519, - "ledger_hash": "6149c5da996cfae88a4d86c9baf5143ed26376be96d96cf35bc825c8b36887c2", - "txlist_hash": "49121e4a24ca0b386324c0ca001225824aefd311df34c7b0e68023151e6630e4", - "messages_hash": "77688a192fd204ba7e4bc20afe10f4ff0cd112e3cf9c8a6355aed2154315a67b", + "ledger_hash": "c3111aa657e1a7d5e2c9aad182edaeab7745e4f2a197af20360f741cb5259ad8", + "txlist_hash": "807bcd13ec86e30acb4098fe72a6dc1ccbff59da7659962586d5b43bd85697e7", + "messages_hash": "62cbf318197e5a7cedb01b9d332cafe5dac47201a0abbf2317c30c4de8fed316", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", "difficulty": 545259519, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", "difficulty": 545259519, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9" + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "object_id": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "block_index": 184, "confirmed": true, - "block_time": 1729539395 + "block_time": 1729600834 }, { "type": "order", - "object_id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, "confirmed": true, - "block_time": 1729539395 + "block_time": 1729600834 }, { "type": "order_match", - "object_id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "block_index": 184, "confirmed": true, - "block_time": 1729539395 + "block_time": 1729600834 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "status": "valid", "confirmed": true, - "block_time": 1729539502 + "block_time": 1729600933 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "block_index": 195, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729539514, + "block_time": 1729600956, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "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": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -684,17 +684,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -707,17 +707,17 @@ }, { "tx_index": 61, - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "block_index": 195, - "block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412", - "block_time": 1729539514, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_time": 1729600956, + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043:1", + "utxos_info": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -744,119 +744,57 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "", "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "64626372743171356865637279727072746864713736796c396a7579656a30657775746e337a746e79767233747c323233643938333561306239336462393037393036656131386634396534306231303665663438623139613639333439303465343639313461333238326135653a317c4d594153534554417c31303030303030303030", + "btc_amount": null, + "fee": null, + "data": "", "decoded_tx": { "version": 2, "segwit": true, - "coinbase": false, + "coinbase": true, "vin": [ { - "hash": "2617b41fa225962b83f0864b40b52546b9452d23d27501a4ee908bdf9b5a7ab3", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "d3ea7489f088d82239411b5aedee6827d952a53a205f08bb621d7b2fd5282680", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "9e72681c5dfcf2d3ab5e85b337afcf5729381dc783ca89b4f3819e8546db251f", - "n": 0, - "script_sig": "", + "hash": "0000000000000000000000000000000000000000000000000000000000000000", + "n": 4294967295, + "script_sig": "013700", "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "5227d943c4fcf726b2b1041b584003367dcad46a80f2515d7297f98c9b28c60a", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "c99a63473be7b1d69373b9994b77e24168eb8982e8f115b704b303dc81cd9711", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "69a0ac83f4176deb4608b43fe1d2bb44a82d01d089c33ee2011f84085d4f209b", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false + "coinbase": true } ], "vout": [ { - "value": 1000, - "script_pub_key": "5121029d650e56a088510de3447b9733283649b474053ed7f6597c3ab9e1e76e01ef882102a5024a176041682eb71507db36c5c2970aff37bb7ccc5a9c3739315991b673702102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae" + "value": 5000000000, + "script_pub_key": "0014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f" }, { - "value": 1000, - "script_pub_key": "5121039d650e56a088510de31578c42365345ce325506a9cbf1d6929fcb1e52b0fbc6c2103e85e114c250e6822b348129f7bcac7d44da577fd3a9a1ad63c3a365c9bbc78242102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae" - }, - { - "value": 1000, - "script_pub_key": "51210282650e56a088510de31278c124663644cc45210ef6ca7f4d34fcb9b32f06e92a2102ec5e434d15380d44877070ae42abf1ed7e914ecd0eff2ee0050b023da88e40162102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae" - }, - { - "value": 29999987000, - "script_pub_key": "0014a5f38190611aeed07b44f965c2664fcbb8b9c44b" + "value": 0, + "script_pub_key": "6a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf9" } ], "vtxinwit": [ - "3044022027f29d211f66dd2d64425535fbfc955efb23a63bceebba84ae3fd4de3aaa576b022031d0f151d239bf49fbdfd551da6afb2df5cf00e1da3d47b690d11dcf5fe40cbe01", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "304402207e981f9cb7deb5144845d7879ea5953f804a8dd2bdb3e3b5160d8727c0b9fc26022020bd525d063744152f15c47d96b5cc1292b7ad092a7532052bf12c6613d4ccc901", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "3044022063342cee4b75a01ea78e6e17d80d16efc295428d8583597882d9654ce275f3ca02202f786c10fa010a5b4fce8d3c8d251443384163ecf11a175e29b24dc571ce4f3c01", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "30440220588504dd3a496687b9ca373e279486241eb76a7a2ccd8abb37c35623fd8ea025022059456eddfd9f6bf53208210f3de4111234094e7f4cade7939f3a61b723af8dfa01", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "304402200b4a5f272bc2cdba190b12607753c33cc1d6c5cd9aa6d089f7edeea0d2a466370220135e1fb21cc7211036b135828035289b9a50412caa96fdaf25b4f88dc7ac5ee101", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011", - "3044022057a09551a955faa93de221d3960095a7f70d119bc532e753761cf0b5bfe9f70d02207e5ba66f807a3110e2f4086c7e36a6077c93b12d283bdcc5c52cde4de4b259f901", - "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011" + "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3", - "tx_id": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3" - }, - "unpacked_data": { - "message_type": "unknown", - "message_type_id": 100, - "message_data": { - "error": "Unknown message type" - } - }, - "btc_amount_normalized": "0.00000000" + "tx_hash": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63", + "tx_id": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63" + } } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8d178493fe646fed6e53cd6868022b209f0c785d349e893748666edf3be1b7da", + "hash": "4d3d762d1f1a4969446506e4838c7b8de0610fab26b0d3392865ca569c2144fd", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -866,20 +804,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e7014254c85880c6b34c6ee44b1136dbf13def32e8e58a71bc39d68284101c845cdc0d57cdb8b18a59e59ccc399df" + "script_pub_key": "6a2e7f2fe586259e52b680ac5b3107efd14f5263868caf70a245966604bba646e8e6a97222f38c9b7acdc187f3460f43" }, { "value": 4999955000, - "script_pub_key": "001492b8d704c9efa380416e70f1b303fe9c684ff733" + "script_pub_key": "0014ef05fe482e497897dec9187c938a3627e18a4a92" } ], "vtxinwit": [ - "3044022033b0c31cb2dd0abe9cc95ad655c12a87ae3e537db29f80ca30d856241293c2d602203d1a27233b85c9c15012d466691c18d16fad62aad4f2320318d81bef7ebb54fd01", - "03a6b117058eafcac447e39e209667778a8caa898b5e4947ac4921a762d46276f5" + "304402200a3ddf7e170e5635497621716217a6bb392a26d4de83178f59d1620fc285890b02203cc6af7613eb8252fb5914b5cc25e70d4863e67f46eb0ad7b7d985b2e351831d01", + "023f1326cd06078ea5f8d19f55259ac8c05bcd39e6d7b694ddaa375b4e68ff74b2" ], "lock_time": 0, - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", - "tx_id": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314" + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_id": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809" }, "unpacked_data": { "message_type": "enhanced_send", @@ -887,7 +825,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -914,17 +852,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -939,17 +877,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", - "block_time": 1729539524, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_time": 1729600965, + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -968,12 +906,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 561, @@ -982,14 +920,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1000,9 +938,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 560, @@ -1011,9 +949,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -1023,24 +961,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1050,9 +988,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 558, @@ -1060,14 +998,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "msg_index": 1, "quantity": 1500000000, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "status": "valid", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1077,9 +1015,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 557, @@ -1092,12 +1030,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 561, @@ -1106,14 +1044,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,9 +1062,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 560, @@ -1135,9 +1073,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -1147,24 +1085,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1174,9 +1112,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 558, @@ -1184,14 +1122,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "msg_index": 1, "quantity": 1500000000, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "status": "valid", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1201,9 +1139,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 557, @@ -1213,10 +1151,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1224,7 +1162,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1237,10 +1175,10 @@ }, { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1248,11 +1186,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1268,27 +1206,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1303,7 +1241,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1324,16 +1262,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1343,9 +1281,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 557, @@ -1355,12 +1293,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1370,9 +1308,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 554, @@ -1382,24 +1320,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": null, @@ -1411,16 +1349,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1430,9 +1368,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 557, @@ -1442,12 +1380,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -1457,9 +1395,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 554, @@ -1469,24 +1407,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": null, @@ -1499,7 +1437,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1509,7 +1447,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1520,7 +1458,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1530,7 +1468,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1541,7 +1479,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1551,7 +1489,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1562,7 +1500,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1572,7 +1510,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1583,7 +1521,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1593,7 +1531,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1607,17 +1545,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", - "block_time": 1729539506, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_time": 1729600947, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf:1", + "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1653,23 +1591,23 @@ }, { "tx_index": 58, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", - "block_time": 1729539502, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_time": 1729600933, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "464aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "supported": true, - "utxos_info": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73:1", + "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "status": "valid" } }, @@ -1677,17 +1615,17 @@ }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 191, - "block_hash": "1fbfa93a4d84ecc6b6fac2b1d9f9796a3ce826e9e3973c30fb528eeb9b715646", - "block_time": 1729539497, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", + "block_time": 1729600919, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8:1", + "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1723,17 +1661,17 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "block_hash": "512cd864a4fb5f274f85b9ad4481189cf6977e77bf7c7064edd66a680fb6a663", - "block_time": 1729539483, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", + "block_time": 1729600915, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f7eae152229797886fd0a0c038058dc14ebbf321806feccc6eea57e305353dbb4066d049f14d2df4ac8092b8d704c9efa380416e70f1b303fe9c684ff733400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f:0", + "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1741,14 +1679,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -1756,7 +1694,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1775,25 +1713,25 @@ }, { "tx_index": 53, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_hash": "3b12bc987628e1e2db65beb62bf59201295e7a22e69baa3c4eb63a4604767fdd", - "block_time": 1729539470, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2faaacaebe28aa08cb56362cfd203652620ca3c6224b26f4b40655a8e3f0f088", + "block_time": 1729600903, + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "btc_amount": 2000, "fee": 10000, - "data": "0bdf1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "data": "0b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a406c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "supported": true, - "utxos_info": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633:0", + "utxos_info": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "status": "valid" } }, @@ -1822,11 +1760,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "open", - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1850,24 +1788,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "block_index": 193, - "event": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729539506, + "block_time": 1729600947, "asset_info": { "divisible": true, "asset_longname": null, @@ -1877,25 +1815,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", "block_index": 193, - "block_time": 1729539506, + "block_time": 1729600947, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, - "utxos_info": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf:1", + "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1927,40 +1865,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "tx_index": 58, - "block_time": 1729539502 + "block_time": 1729600933 }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729539502, + "block_time": 1729600933, "asset_info": { "divisible": true, "asset_longname": null, @@ -1970,9 +1908,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 } ], "next_cursor": 520, @@ -1981,17 +1919,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "quantity": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, "asset_info": { "divisible": true, @@ -2002,22 +1940,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -2027,22 +1965,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 196, - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -2052,30 +1990,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729539528.51405, + "block_time": 1729600969.716605, "btc_amount": 0, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "destination": "", "fee": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, - "utxos_info": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314:1", + "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -2089,7 +2027,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, @@ -2098,7 +2036,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2106,14 +2044,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2121,14 +2059,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2143,7 +2081,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2151,7 +2089,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2162,36 +2100,40 @@ "result_count": 4 }, "/v2/addresses/
/balances/": { - "result": { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } + "result": [ + { + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "asset": "XCP", + "quantity": 82699937196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.99937000" + } + ], + "next_cursor": null, + "result_count": 1 }, "/v2/addresses/
/credits": { "result": [ { "block_index": 192, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "asset_info": { "divisible": true, "asset_longname": null, @@ -2203,16 +2145,16 @@ }, { "block_index": 184, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "event": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "asset_info": { "divisible": true, "asset_longname": null, @@ -2224,20 +2166,20 @@ }, { "block_index": 161, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "event": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2245,20 +2187,20 @@ }, { "block_index": 158, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "85578cf8517d8d0416602a14e03f4e979c18881eb240d51d22e1d55ef9dec14d", + "event": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539367, + "block_time": 1729600795, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2270,16 +2212,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "event": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "tx_index": 39, - "utxo": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", - "utxo_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "utxo": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "utxo_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "confirmed": true, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2293,16 +2235,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "asset_info": { "divisible": true, "asset_longname": null, @@ -2314,16 +2256,16 @@ }, { "block_index": 191, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539497, + "block_time": 1729600919, "asset_info": { "divisible": true, "asset_longname": null, @@ -2335,16 +2277,16 @@ }, { "block_index": 190, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -2356,20 +2298,20 @@ }, { "block_index": 190, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2377,16 +2319,16 @@ }, { "block_index": 185, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "event": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539463, + "block_time": 1729600895, "asset_info": { "divisible": true, "asset_longname": null, @@ -2409,9 +2351,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "0d907b0a040fb6bb7f8923fa0dd88f22253c6495015234101a6d108a4e896f3d", + "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", "block_index": 137, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2419,7 +2361,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539277, + "block_time": 1729600696, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2430,14 +2372,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "4a467522ed3f0bbd1fe3a9a3cec0bf6587ac5d29450d469e4069bd28a551c4d6", + "tx_hash": "5541ca001c9c70e380ae489ca063a58d4b0419d994859428514425b4496aa43c", "block_index": 112, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729539171, + "block_time": 1729600591, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2449,10 +2391,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2460,7 +2402,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -2473,10 +2415,10 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2484,11 +2426,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2497,10 +2439,10 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2508,11 +2450,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2521,10 +2463,10 @@ }, { "tx_index": 39, - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "block_index": 152, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2532,11 +2474,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2545,10 +2487,10 @@ }, { "tx_index": 36, - "tx_hash": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3", + "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", "block_index": 149, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "223d9835a0b93db907906ea18f49e40b106ef48b19a6934904e46914a3282a5e:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2556,11 +2498,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539327, + "block_time": 1729600746, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2575,10 +2517,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "block_index": 151, - "source": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a:0", - "destination": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", + "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2586,11 +2528,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539336, + "block_time": 1729600754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2605,10 +2547,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2616,11 +2558,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2629,10 +2571,10 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2640,11 +2582,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2653,10 +2595,10 @@ }, { "tx_index": 39, - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "block_index": 152, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2664,11 +2606,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2677,10 +2619,10 @@ }, { "tx_index": 36, - "tx_hash": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3", + "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", "block_index": 149, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "223d9835a0b93db907906ea18f49e40b106ef48b19a6934904e46914a3282a5e:1", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2688,11 +2630,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539327, + "block_time": 1729600746, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2707,10 +2649,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "block_index": 151, - "source": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a:0", - "destination": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", + "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2718,11 +2660,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539336, + "block_time": 1729600754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -2737,9 +2679,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2748,7 +2690,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2758,7 +2700,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -2779,9 +2721,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2790,7 +2732,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2800,7 +2742,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -2820,19 +2762,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2840,7 +2782,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2855,7 +2797,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -2869,19 +2811,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2889,7 +2831,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2904,7 +2846,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -2924,19 +2866,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2944,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2959,7 +2901,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -2973,19 +2915,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2993,7 +2935,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3008,7 +2950,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3028,19 +2970,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3048,7 +2990,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3063,7 +3005,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -3077,19 +3019,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3097,7 +3039,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3112,7 +3054,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3132,19 +3074,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3152,7 +3094,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3167,7 +3109,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -3181,19 +3123,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3201,7 +3143,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3216,7 +3158,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -3235,16 +3177,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -3255,14 +3197,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -3277,20 +3219,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "22e53c1e51e03ae539a6db383da05a9f2eb53088fd05fb42887f4b3a178dc967", + "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -3305,20 +3247,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729539375, + "block_time": 1729600803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "081a1b2db8ae4b03be96796fb52a07a531fb9a198b44b98b7b5864281038f718", + "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -3333,20 +3275,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539371, + "block_time": 1729600799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "85578cf8517d8d0416602a14e03f4e979c18881eb240d51d22e1d55ef9dec14d", + "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -3361,20 +3303,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539367, + "block_time": 1729600795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -3389,7 +3331,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729539353, + "block_time": 1729600782, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3403,8 +3345,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -3412,16 +3354,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3429,16 +3371,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -3446,16 +3388,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -3463,16 +3405,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -3480,8 +3422,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729539230, - "last_issuance_block_time": 1729539247, + "first_issuance_block_time": 1729600649, + "last_issuance_block_time": 1729600666, "supply_normalized": "0.00000000" } ], @@ -3494,8 +3436,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -3503,16 +3445,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3520,16 +3462,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -3537,16 +3479,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -3554,16 +3496,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -3571,8 +3513,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729539230, - "last_issuance_block_time": 1729539247, + "first_issuance_block_time": 1729600649, + "last_issuance_block_time": 1729600666, "supply_normalized": "0.00000000" } ], @@ -3585,8 +3527,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -3594,16 +3536,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -3611,16 +3553,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -3628,16 +3570,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -3645,16 +3587,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -3662,8 +3604,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729539230, - "last_issuance_block_time": 1729539247, + "first_issuance_block_time": 1729600649, + "last_issuance_block_time": 1729600666, "supply_normalized": "0.00000000" } ], @@ -3674,17 +3616,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_hash": "464133ab9468b3e1fb063e0d7173ad88879210557f9676eddb34b4b8b96bdc2b", - "block_time": 1729539506, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_time": 1729600947, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf:1", + "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3720,23 +3662,23 @@ }, { "tx_index": 58, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_hash": "012cbdad035d4f4113937edc75292d4f49aadededa8f24421c48386580fd11e4", - "block_time": 1729539502, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_time": 1729600933, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "464aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "supported": true, - "utxos_info": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73:1", + "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "status": "valid" } }, @@ -3744,17 +3686,17 @@ }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 191, - "block_hash": "1fbfa93a4d84ecc6b6fac2b1d9f9796a3ce826e9e3973c30fb528eeb9b715646", - "block_time": 1729539497, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", + "block_time": 1729600919, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8:1", + "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3790,17 +3732,17 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "block_hash": "512cd864a4fb5f274f85b9ad4481189cf6977e77bf7c7064edd66a680fb6a663", - "block_time": 1729539483, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", + "block_time": 1729600915, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f7eae152229797886fd0a0c038058dc14ebbf321806feccc6eea57e305353dbb4066d049f14d2df4ac8092b8d704c9efa380416e70f1b303fe9c684ff733400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f:0", + "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3808,14 +3750,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -3823,7 +3765,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3842,17 +3784,17 @@ }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 185, - "block_hash": "38a2e2019c785e70a5db3c2455f654a178ce61fbf47b70acae523659267f7da9", - "block_time": 1729539463, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "block_hash": "4a06a184078a2111af3df09dc9d57d397867eaf125081feeed37e0babcb42ec2", + "block_time": 1729600895, + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f:1", + "utxos_info": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3894,20 +3836,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -3929,9 +3871,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3946,7 +3888,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3972,9 +3914,9 @@ }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3989,7 +3931,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4015,9 +3957,9 @@ }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4032,7 +3974,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4058,9 +4000,9 @@ }, { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4075,7 +4017,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4106,10 +4048,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4134,7 +4076,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729539353, + "block_time": 1729600782, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4143,10 +4085,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4171,7 +4113,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729539269, + "block_time": 1729600687, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4183,10 +4125,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4211,7 +4153,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729539252, + "block_time": 1729600670, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4223,10 +4165,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4251,7 +4193,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729539247, + "block_time": 1729600666, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4263,10 +4205,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4291,7 +4233,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4309,22 +4251,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4333,22 +4275,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a7486862d3e4456d1632710a164fbd85e2a6bc980edc4c6695939b7a431eb7ea", + "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539264, + "block_time": 1729600683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4357,22 +4299,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6b0b6971f5a8cceedb358c8201024c0dfc905dac2133c6795bdc472b3f266d9c", + "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539260, + "block_time": 1729600679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4381,22 +4323,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5fbc3c5e12fd4dd1997863af1aaca5514e1dcc00b4dd97e42788fa1b75941a73", + "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539256, + "block_time": 1729600674, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4405,22 +4347,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "acbf2d562429fbd98b480585502470dd41c2c1d32bb9119340fef75ebab055d9", + "tx_hash": "9fd58f4965e60f1044c674ce3253a67d37f0d6924d08e6cf1b15b94f8629200f", "tx_index": 15, "block_index": 127, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539235, + "block_time": 1729600653, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4429,22 +4371,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4459,22 +4401,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4492,7 +4434,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4504,7 +4446,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101e74b782ba749f74c6e246c952ebf52c915b6d148c88de85fc2416363250320c400000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff0200000000000000002b6a29df0075da868d50e92cb0584f135ba79bac8cd164b95f9d3e8e9cc0c77dd4b5b1ec1267fb2bc85a80bd9bba052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001012f0620ecc94097bf787349bfda22cb404296e7754d21045f71a924a080ee680100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a2950941e36ff7488a77f215ff66d90b8095322d8e17c9f4e555d3d67cf38574eace02748a4bdfd09bba69bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4522,23 +4464,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41" + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" }, "name": "btcpay", - "data": "434e5452505254590bdf1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "data": "434e5452505254590b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a403fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "0200000000010171ecb259e546e401bbc0b13a6c21191d940b518801248af3e6918f264b11af3f00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff03b80b000000000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b00000000000000004b6a494a85f391ce3167ce238464ad00412ce207c6b06655c322d98b693733b2e9ae78c7f5f491fe6e7aa82f87ae5ea46aa1ea24dc423dc152144c776ae0d8ba15f465df783a4b19e2529832c79f052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001010cd6f6f457fb21e2dbc3c01cbfa7779e84b51ed915ae8ef6f60e00af2e69154a00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03b80b000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f00000000000000004b6a497507a46c0bbb5a4833e1b18e560a6ea2f82b138550721c8569194b54dfe12aa2c88d0b7c374e62cf4ef4a48668d68302c40e519b2ce6c03b5b3ce4bc74a7eb1f68ec4cc3a9e33aba48c79f052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "status": "valid" } } @@ -4547,7 +4489,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "quantity": 1000, "overburn": false }, @@ -4557,27 +4499,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "02000000000101697aab377e493650354c22437285438ebef4e43aecd483075724fe8ebb0688dc00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000" + "rawtransaction": "02000000000101a72f14242480b21632bba94265d64a3b612f941b6f46a46b625d22c4df02e47c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "offer_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf" + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93" }, "name": "cancel", - "data": "434e5452505254594612f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "data": "434e54525052545946c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101fd0f3d2d981f8785bd85d96da4b9829a77e170c79b70c90c5a55c83620c92c3800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff0200000000000000002b6a29f0621f175e4a17631a63f47d22f658f64ff0e594d5611953dd8201a91d17a18895a1578685f3a673bd9bba052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101f157a333d65416897dcebfd9cc1c61bd315a42ac4b476cc9f0df91677c87993900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a297a834c0ddc1a2cb69dd5d5b3a4dbcf37d77b216cc78f5857fcd9f1c0fae5bef5afe9c77e2e9b8532049bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "status": "valid" } } @@ -4586,7 +4528,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4605,7 +4547,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101cf6bc92f6bdd3d6e1b54f236267378d1890fab3277a2c19dc4ce6e24dbe55f2000000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000226a20cda6d28834c0d19d727300aa3110b367c79c6e55dbe8b7bd464fddef251e8e2caabc052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101a3a6fbc1f3b0f09ea9a01e3119309d2030581ba8e65304208b6d27a61dc487fe00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000226a200fc65feec5bfbddc91e68b576f3c9c2111fee426fd9acf4b155aa07ee9eb1f04aabc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4621,7 +4563,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4645,7 +4587,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "02000000000101ae1c0c30e85892e46aba35588bb2500546a9b77a376ecc44379a5b41f44e79e6020000001600141ead9f7ce72a0aee740fae10fdaafd105fda31abffffffff0200000000000000002c6a2ac191f58839ee9c99ddd7ce2ead0ad6ed986d26681b995c0fc0783aaf1f32d2b4471d1db523300c644aa2b0540a27010000001600141ead9f7ce72a0aee740fae10fdaafd105fda31ab02000000000000", + "rawtransaction": "02000000000101c2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef02000000160014fbceb7810513954604a3136dad2275da3265619dffffffff0200000000000000002c6a2a24df52efb3b67f6f90ecc48a6f2ab9092079082f106ae9340473e7b524317d24f0ed438b09af56d45bafb0540a2701000000160014fbceb7810513954604a3136dad2275da3265619d02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4667,14 +4609,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4693,7 +4635,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001014d9d408c8aa28d263c6236e7ce9326c088a7c77733b15208936bba69fc66892b00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000236a21b9a0f3a14e8bd2b22c2973f10084449fa6342781e08c138982b0be1ddd8a2e28bc6fbc052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001015a4cdb86cc3604b095e5c9cf0ca45f2a55bcfaae99faa5581256d43be396a4e900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a21d6996394366e74123d83b3f5130d0e9f59db3f675e8bc28db74ae4f633a2ca6e9d6fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4710,10 +4652,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "transfer_destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "lock": false, "reset": false, @@ -4726,7 +4668,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "020000000001017903c0d3e85e6f55c818ff03b337e7667d08b9f04bf47baea1dd4ae822a742c200000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff032202000000000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b0000000000000000236a2163c004dfeca2b4a7a468f25c25e79c0bfd8a54da1aecdc196d5a885e0d13109e1585b2052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "0200000000010171bd23ee4ecbad6270dbb8810e7b0c320710a3ada835f63ab744972cf8d6151400000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff032202000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f0000000000000000236a21c35eb58725aa4bc7ec220cfeccefcfeb76b826ddc8bfa91fdbcf88864e7d4fcc3985b2052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4751,16 +4693,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", 1 ], [ "MYASSETA", - "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", 2 ] ], @@ -4768,26 +4710,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a5f38190611aeed07b44f965c2664fcbb8b9c44b80f7eae152229797886fd0a0c038058dc14ebbf3218f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f80a7623a666dd6367f02aa9a43d4bddcb525cdc9448f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "0200000000010474586626d8d2dd94f8aa07f2aa1d928f1e8a6dabbc8d8cb03892249493f4f89300000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff4def0cdb59f17f28ce1f4b58f69b4c99e3fd1999f6d084a35cd458008bcd780600000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffffb8487c0f75f9841acc48f090931607d874d448815361ab44c83345b2802cd25300000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff6ae80d8015b049e741ea2a843d331c3d76ceae2a7efcebc95584b5ef699f990f00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff03e80300000000000069512103541391f6ecc5b04cd369fa68c3d9c3db53eda15c58f5889b22209590581877a2210253b3e4220c9a1e507851e852563b0a9d8e1d10b45470154cf563c3e30fded8ba2102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee803000000000000695121035b1391f6ecc5b04cd34a8d053110547be10cbbb2849b57e9f0c2f3df93a0ce82210297f82cd5e67b4c72efc6683d869bcaa58b90d3faef8334c3d72ba68f63b1f4482102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153ae14f316a804000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000002000002000002000000000000", + "rawtransaction": "020000000001046601e2fc94b15d43cd1694b794b22d093bf1e481390b53480eeadb7d150a373e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff93e5ca8d8fe6183134e853a534288ef5b3028469940514fce9b163e0411fcc3700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff48cf3f2ea59a29a2616529af6dd6c311cf5bbf354cd30a8fe33be958224da9d700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff63af512919afa2f89e873112d5c9e3dc2213c851d83402a5d21ce1b70861cb3c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03e80300000000000069512102320ace28b1954fd5eaa805b9a093dfc6bda5b56d8b8480439d4e4ed3e89b8b752102fdb2620f570b48a8c24e6f73aa4c261fac0e41244e818533302896e47a490ddf21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121023d0ace28b1954fd5ea8b72d4525a9ae8f55164b94a99cb35fcc54c0d7e29b75c210264edaaa835312ec51478187100d665cb11d2f6018348c1bc1260f3881626215f21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53ae14f316a804000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4799,7 +4741,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4816,7 +4758,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -4830,7 +4772,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "0200000000010110f461a2b6b7d0ceb56a3c36070c4d6b502e5a4dfcef7fe4e8feb929d0a116a800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000356a33c4475277dd8914c093baaf2098c073c7f3417cbb37527cadf7775408a206f94d833711d4e20a9a572aa60bce74645d153d1edc51b8052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001010cd6becb5b812e053ce82398841af335c3326030852f5700a7ee69bbf438548e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000356a331366e9da62e0dd3f6539b19398a1661537b0beb11865424fe5ea7d272a9109f6212182f63fa0d74a9996dd319ceabae1b03fdb51b8052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4852,8 +4794,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4869,19 +4811,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880f7eae152229797886fd0a0c038058dc14ebbf321", + "data": "434e54525052545902000000000000000100000000000003e880a7623a666dd6367f02aa9a43d4bddcb525cdc944", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101ab2a29267ea80990ba798a8a5cbef290454d47632ba663cb826557dc9d5a67a800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000306a2e3ecd36925c62562e166af268e836db0d632d65538dec2ad71ff6f281d05f36c8c4aef6e3ca6e9cd358dd47ea8d8076b9052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101a5a437abfceb2769bd0f0e917d7f3676a34a8afa323a4daaa36de808006d263100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000306a2e8ddaf280f664ff4c0ed800cc42e43c116bc5e2da5d3ebf769ff792738e7e4285f4872d2d19e2ba498729ce55590276b9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "memo": null, "quantity_normalized": "0.00001000" } @@ -4891,23 +4833,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480f7eae152229797886fd0a0c038058dc14ebbf32107ffff", + "data": "434e5452505254590480a7623a666dd6367f02aa9a43d4bddcb525cdc94407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001018f03db23da65dbf8feaf35c15745e3be5a97329d410a2f3e04cc91e3e44adb2c00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000236a21fb348a5109f4fa1d707ceaacaedab9d38472cdc9ba4aef08b2a1bd6b49714a9c466fbc052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101121eff4d7fe23c2ce07956b290778592f93235555d76b67ce599f5d5a3ae495f00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a2197add0b35ef9f146b1b92c6711f007727850807dce1e6b772da2fabe855df566646fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "flags": 7, "memo": "ffff" } @@ -4917,8 +4859,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "quantity": 1000 }, "name": "dispense", @@ -4927,7 +4869,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "020000000001013316e120a1aeb734bcf6abbd5750b2a4a1f55bea04ff5bb94dc6de49eab03a4302000000160014f7eae152229797886fd0a0c038058dc14ebbf321ffffffff03e80300000000000016001492b8d704c9efa380416e70f1b303fe9c684ff73300000000000000000c6a0a7ba2439c1c0493c6d060e3c1082701000000160014f7eae152229797886fd0a0c038058dc14ebbf32102000000000000", + "rawtransaction": "0200000000010175b18150401657641ee43dfb036ef57abc495a36f7dcd26fc467fd3e3b898f0702000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc944ffffffff03e803000000000000160014ef05fe482e497897dec9187c938a3627e18a4a9200000000000000000c6a0a4e0b2c0c8cea4b48785ae3c1082701000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc94402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4940,7 +4882,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4971,7 +4913,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101ad72cbea3815af8e56b49732764ac81277d1379a63035d16d2b16668d9609fb800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000316a2f8bd5c040721f2a1ae4da92172aa2844f3ab149270964fe885d67263a582967abb9128220450562911ce6677777336b3bb9052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "020000000001013a2e04e9da414ac6991ea3cdb28646adb691759462c59948ed27b91bcb9b308900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000316a2f17bb6968a82536ec6d57a0823865a21b6601fae19646540989fdb79d042008a3f13e3617ba73d58d6c7d913ace48fd3bb9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5000,13 +4942,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5018,7 +4960,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "020000000001018ab515b6df8a396c3fbb515116f7b9534ec078b7c298c84b22bff5b986a604b300000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff020000000000000000166a14c8a692df72713aabad8e6bbf43388f2773f4ad7d69bf052a01000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000000000000", + "rawtransaction": "02000000000101b84185f100595d8a2231c365065cd5aabdb9f3ce53694e59e948f042fda9609600000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000166a14f49a5390f81369f8bb2dce5e4e6d9756846e2f0769bf052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5032,8 +4974,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "082a83289e8589773e8bf0630ed971946ef9e3f822fc6450e6e58b37c46b2cf3:3", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5046,12 +4988,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171356865637279727072746864713736796c396a7579656a30657775746e337a746e79767233747c303832613833323839653835383937373365386266303633306564393731393436656639653366383232666336343530653665353862333763343662326366333a337c5843507c31303030", + "data": "434e545250525459646263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c336363623631303862376531316364326135303233346438353163383133323264636533633964353132333138373965663861326166313932393531616636333a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106c388b2915db493176b5c1c0af0e59511a2e670be35eaa56e0500aa9f8f03ffd100000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff5103b9b4325e84d7594ad95a315511d9ba748040f7165478f8fd1dafe5f4101400000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff491d515143d422464a4a4c52070bfe540ec70b409faea08461f5e91c19f1119800000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff361617f69a0bab11945b69416173fd4d20dc7afda833112fe2494491e5d604bf00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff70993d1ed418241c419395c65954f1dc4dd6812490b0d105fd80e3aae364bc4f00000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff3202b35dfac6c5b0398beeb2caacbe45131462617bb783fe5a78ea829d82bb9500000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44bffffffff04e8030000000000006951210204d355adf9a03ffeec0b15ccd8b5f662a594c7e5f6b2488565a0ee8d2f314a5f21021a16389285927431bf8ee47f34b6936c237a32eb7b692bd745988197c92de6c22102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee8030000000000006951210304d355adf9a03ffeec574eca92f4ff2aa7cb91e3bca95cc521e7b68c3a3f4b372103524335ce958d283ebc8dab3872bec32063217bf83f3f6a9317938495c528b6172102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aee803000000000000695121032ed355adf9a03ffeec5d14c999fbf46fc8bff2fab5fb0ac517d486e95e067c432102637a01f8f0eb115b8feb930a40d8a01657144b9d095a5fab75a0b3f6f11ed45c2102d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe3501153aec36d22fc06000000160014a5f38190611aeed07b44f965c2664fcbb8b9c44b02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106a67fe03efb16d6e309a3e356c20c0420c0ca7be22518c41c7f20e62dfbd9bbe200000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffffb9239ad8ce18977d54bd74df9df75aab9d1d3a91ae1e01acbe728d48b8c3641100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff505475308ab54bb36b0dc3bb7debd5993b3aed59e44cb558407b819980b6792700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff8dd2a5c9e4deb858eb72f2092417cbe00f4129bdf600eb1232ffc1dac9112b7e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff287eaec105fdf0dac03f8e84d953345fa9f6badf2d99c97a0044fca799e2fffd00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0fab5a0c757b882994a2ce55018fcc45f38e7137d0b87b5327ae9e4da221b6f500000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff04e8030000000000006951210254284f4eb2a32f1bae3931e200983dc6904c6c3ec9e68ee571b60451e36e5b3b210335e2ca1a5706cac1222cc9abd3f995bb05cf2270f01ce65c4ed74485d931c40621030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee8030000000000006951210354284f4eb2a32f1bae6531b617dd3dd4c14b7e78cee2d3e423b60316b62c1258210275bc900a060888c92c22caff93afdcb15ec62a63a910a1411b851ed5d635c53a21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121027e284f4eb2a32f1bae3c35b741d63ccbfd3a4f31cfe0d0e0478e3627d51423482102468ea26e656dbbaa1546ffcea19ced8969ff4f05917193207db427e7ef00f4a721030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aec36d22fc06000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5064,8 +5006,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5078,12 +5020,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964643337303864383039346464363764666162343932323031363732336164366136323464323735336233336236316163303437303736623038373933316666393a307c626372743171356865637279727072746864713736796c396a7579656a30657775746e337a746e79767233747c5843507c31303030", + "data": "434e54525052545964326664623933383036303439643064616333333237313465393361336639663563326663623366383861373662366263373339393338303731656532616334613a307c6263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031023a34b4e24fc742e8ef0708e9c952698bd84d884170649d86a917ba5901fa901000000160014f9b38e2d42efb9307785475778151ec301966ac2ffffffffae1c0c30e85892e46aba35588bb2500546a9b77a376ecc44379a5b41f44e79e600000000160014f9b38e2d42efb9307785475778151ec301966ac2ffffffff40f78e5b2ae900b1352a1ee4016317a453969ff556522ae9bd8e41e97807604a01000000160014f9b38e2d42efb9307785475778151ec301966ac2ffffffff04e80300000000000069512103151398cd88d8b1698ef01c9aa9e534c006fdca2289db6990ecbc522b55be218c21021f46bdfb6cce4502b4d93e18c32493ab7d0ecde235ec572ff1d81a4960464c5b21021b4822e4a2bb6c63f96f32ad6bf8bd9d3f424eb633146afb12bee8b898842c3753aee80300000000000069512103151398cd88d8b1698ea34ecbaeed3b9d0dfc9570d4856fdbeab9413d50f6262121024513efbf228e0611a4873b5fc6268ef573518bf963b5057cb7cc0d17670b088121021b4822e4a2bb6c63f96f32ad6bf8bd9d3f424eb633146afb12bee8b898842c3753aee803000000000000695121023f1398cd88d8b1698efa01dfece678d8668ea36adc8f6f9788da3349618713e321032d768ccd5bfc7663d0ef5f2ef110f7994a3bfe8006df3519c0b9797954717c7621021b4822e4a2bb6c63f96f32ad6bf8bd9d3f424eb633146afb12bee8b898842c3753ae11780b2701000000160014f9b38e2d42efb9307785475778151ec301966ac202000002000002000000000000", + "rawtransaction": "020000000001031add506e93ba9560878795fdf100510018f974082abe588ad8bba1ace3caca4401000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffffc2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef00000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff5e8616e204ea3b6435fd5478bd31a0f2cef73410f4508bf4457b91ed3bb769ae01000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff04e80300000000000069512103de0a2b134f395690841d679f9c6bd78eb23b85e481e87fcddb8de430a3af88a321022240eabbb76de12108b7f1f6710d18320d56a69e7376d35aa598824f5cfbc806210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103de0a2b134f395690844a6dc9cf388bd8b86ad0e0d4eb2b81dd8ff577a1ec8aaf21032607fcb5b262e77109e3b2a33913083c5644accd632ad252a59f931d17f09db8210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103f40a2b134f3956908449388c99649bc1d248e3a884e12bcdbfec8703909dbfbf210313748f82840cd24731d1c495436b7b503e309ea61241e53893fae1786fc2f190210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353ae11780b2701000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5099,8 +5041,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -5108,16 +5050,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729539367, - "last_issuance_block_time": 1729539375, + "first_issuance_block_time": 1729600795, + "last_issuance_block_time": 1729600803, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "owner": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "owner": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "divisible": true, "locked": false, "supply": 100000000000, @@ -5125,16 +5067,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729539363, - "last_issuance_block_time": 1729539363, + "first_issuance_block_time": 1729600791, + "last_issuance_block_time": 1729600791, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 100000000000, @@ -5142,16 +5084,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729539323, - "last_issuance_block_time": 1729539323, + "first_issuance_block_time": 1729600742, + "last_issuance_block_time": 1729600742, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 40, @@ -5159,16 +5101,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729539269, - "last_issuance_block_time": 1729539273, + "first_issuance_block_time": 1729600687, + "last_issuance_block_time": 1729600691, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 19, @@ -5176,8 +5118,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729539252, - "last_issuance_block_time": 1729539264, + "first_issuance_block_time": 1729600670, + "last_issuance_block_time": 1729600683, "supply_normalized": "0.00000019" } ], @@ -5189,8 +5131,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 10000000000, @@ -5198,15 +5140,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729539213, - "last_issuance_block_time": 1729539226, + "first_issuance_block_time": 1729600633, + "last_issuance_block_time": 1729600646, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5214,14 +5156,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5229,7 +5171,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5240,29 +5182,33 @@ "result_count": 2 }, "/v2/assets//balances/
": { - "result": { - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } + "result": [ + { + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "asset": "XCP", + "quantity": 82699937196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.99937000" + } + ], + "next_cursor": null, + "result_count": 1 }, "/v2/assets//orders": { "result": [ { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5277,7 +5223,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5303,9 +5249,9 @@ }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5320,7 +5266,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5346,9 +5292,9 @@ }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5363,7 +5309,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5389,9 +5335,9 @@ }, { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5406,7 +5352,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5432,9 +5378,9 @@ }, { "tx_index": 52, - "tx_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5449,7 +5395,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5480,13 +5426,13 @@ "/v2/assets//matches": { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5500,7 +5446,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5520,13 +5466,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5540,7 +5486,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5560,13 +5506,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "tx0_index": 49, - "tx0_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 50, - "tx1_hash": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5580,7 +5526,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5607,20 +5553,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5628,20 +5574,20 @@ }, { "block_index": 125, - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "178933543378d126cc11377c3aebf77bdd65a28f9ff63b131f19f0d415810246", + "event": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5649,20 +5595,20 @@ }, { "block_index": 124, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5670,20 +5616,20 @@ }, { "block_index": 124, - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "event": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5695,16 +5641,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5722,12 +5668,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -5739,16 +5685,16 @@ }, { "block_index": 195, - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "event": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539514, + "block_time": 1729600956, "asset_info": { "divisible": true, "asset_longname": null, @@ -5760,16 +5706,16 @@ }, { "block_index": 194, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "divisible": true, "asset_longname": null, @@ -5781,16 +5727,16 @@ }, { "block_index": 194, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "divisible": true, "asset_longname": null, @@ -5802,16 +5748,16 @@ }, { "block_index": 193, - "address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "asset_info": { "divisible": true, "asset_longname": null, @@ -5829,20 +5775,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -5864,14 +5810,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "178933543378d126cc11377c3aebf77bdd65a28f9ff63b131f19f0d415810246", + "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -5886,20 +5832,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -5914,20 +5860,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -5942,20 +5888,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -5970,7 +5916,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729539213, + "block_time": 1729600633, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5982,10 +5928,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5993,7 +5939,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -6006,10 +5952,10 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6017,7 +5963,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -6030,10 +5976,10 @@ }, { "tx_index": 55, - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca", + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", "block_index": 189, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -6041,7 +5987,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539479, + "block_time": 1729600911, "asset_info": { "divisible": true, "asset_longname": null, @@ -6054,10 +6000,10 @@ }, { "tx_index": 44, - "tx_hash": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02", + "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", "block_index": 157, - "source": "4a600778e9418ebde92a5256f59f9653a4176301e41e2a35b100e92a5b8ef740:0", - "destination": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", + "destination": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6065,7 +6011,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539363, + "block_time": 1729600791, "asset_info": { "divisible": true, "asset_longname": null, @@ -6078,10 +6024,10 @@ }, { "tx_index": 43, - "tx_hash": "4a600778e9418ebde92a5256f59f9653a4176301e41e2a35b100e92a5b8ef740", + "tx_hash": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e", "block_index": 156, - "source": "dab7e13bdf6e664837899e345d780c9f202b026868cd536eed6f64fe9384178d:0", - "destination": "4a600778e9418ebde92a5256f59f9653a4176301e41e2a35b100e92a5b8ef740:0", + "source": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", + "destination": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6089,7 +6035,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539357, + "block_time": 1729600786, "asset_info": { "divisible": true, "asset_longname": null, @@ -6108,9 +6054,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6119,7 +6065,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6129,7 +6075,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -6145,9 +6091,9 @@ }, { "tx_index": 29, - "tx_hash": "dc00a1ed7cfb037439c2160332f950d8b34d85c8b13502ffb694562001335701", + "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", "block_index": 142, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6156,7 +6102,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6166,7 +6112,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539298, + "block_time": 1729600717, "asset_info": { "divisible": true, "asset_longname": null, @@ -6182,9 +6128,9 @@ }, { "tx_index": 30, - "tx_hash": "35ec70b0a2764c50b4609f0e32541676c795160f154238d9339df8428ade9320", + "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", "block_index": 150, - "source": "mnizsbWSmdSHrHsW3qa6HXoXc5Gg71TiEe", + "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6192,10 +6138,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a0a8441287387458928a3041406e12121d9f7904945859710151b6f6d1e3197", - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6203,7 +6149,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539332, + "block_time": 1729600750, "asset_info": { "divisible": true, "asset_longname": null, @@ -6219,18 +6165,18 @@ }, { "tx_index": 33, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6240,7 +6186,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -6261,9 +6207,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6272,7 +6218,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6282,7 +6228,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -6310,7 +6256,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6318,7 +6264,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6327,7 +6273,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6335,7 +6281,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6344,7 +6290,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6352,7 +6298,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6361,7 +6307,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6376,27 +6322,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6411,7 +6357,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -6425,27 +6371,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae", + "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", "block_index": 147, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6460,7 +6406,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539319, + "block_time": 1729600737, "asset_info": { "divisible": true, "asset_longname": null, @@ -6474,19 +6420,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6494,7 +6440,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6509,7 +6455,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -6523,19 +6469,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6543,7 +6489,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6558,7 +6504,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -6579,8 +6525,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "owner": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false, "supply": 0, @@ -6588,8 +6534,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729539371, - "last_issuance_block_time": 1729539371, + "first_issuance_block_time": 1729600799, + "last_issuance_block_time": 1729600799, "supply_normalized": "0.00000000" } ], @@ -6599,10 +6545,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6627,7 +6573,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6645,22 +6591,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "178933543378d126cc11377c3aebf77bdd65a28f9ff63b131f19f0d415810246", + "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", "tx_index": 13, "block_index": 125, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6669,22 +6615,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0", + "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", "tx_index": 12, "block_index": 124, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539222, + "block_time": 1729600641, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6693,22 +6639,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6723,22 +6669,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "5c01322eaf8fafb69890e06fae40443e5f8ad63a03a0a9d01016300ca059ef5d", + "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", "tx_index": 11, "block_index": 123, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539218, + "block_time": 1729600637, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -6754,9 +6700,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6771,7 +6717,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6797,9 +6743,9 @@ }, { "tx_index": 52, - "tx_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6814,7 +6760,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6840,9 +6786,9 @@ }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6857,7 +6803,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6883,9 +6829,9 @@ }, { "tx_index": 54, - "tx_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "block_index": 188, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6900,7 +6846,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6926,9 +6872,9 @@ }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6943,7 +6889,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6974,9 +6920,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6991,7 +6937,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7019,13 +6965,13 @@ "/v2/orders//matches": { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7039,7 +6985,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7059,13 +7005,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7079,7 +7025,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7106,15 +7052,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "btc_amount": 2000, - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "status": "valid", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "btc_amount_normalized": "0.00002000" } ], @@ -7125,9 +7071,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "block_index": 187, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7145,7 +7091,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729539470, + "block_time": 1729600903, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7171,9 +7117,9 @@ }, { "tx_index": 54, - "tx_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "block_index": 188, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7191,7 +7137,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7217,9 +7163,9 @@ }, { "tx_index": 49, - "tx_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", + "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", "block_index": 184, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7237,7 +7183,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539395, + "block_time": 1729600834, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7263,9 +7209,9 @@ }, { "tx_index": 51, - "tx_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "block_index": 188, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7283,7 +7229,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539474, + "block_time": 1729600907, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7309,9 +7255,9 @@ }, { "tx_index": 57, - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", "block_index": 192, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7329,7 +7275,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539502, + "block_time": 1729600933, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7360,13 +7306,13 @@ "/v2/orders///matches": { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7383,7 +7329,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7403,13 +7349,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7426,7 +7372,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7446,13 +7392,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "tx0_index": 49, - "tx0_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 50, - "tx1_hash": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7469,7 +7415,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729539395, + "block_time": 1729600834, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7495,13 +7441,13 @@ "/v2/order_matches": { "result": [ { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 54, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7515,7 +7461,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7535,13 +7481,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "tx0_index": 51, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 52, - "tx1_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7555,7 +7501,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729539470, + "block_time": 1729600903, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7575,13 +7521,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", + "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", "tx0_index": 49, - "tx0_hash": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx1_index": 50, - "tx1_hash": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7595,7 +7541,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729539395, + "block_time": 1729600834, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7640,66 +7586,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "8f53b933c75c6287892dd9a2784df9a8083cc903e69796d5774d348f9604e349", + "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", "block_index": 121, - "source": "bcrt1qwt93j38jza7mma9luld0e0wgdk7h44wj54tzqt", + "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729539209, + "block_time": 1729600628, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2a9b510e5f5aca3dae44ce8a998879757edd7cd63f153b744cf89a510dfbfdd2", + "tx_hash": "5525a4b2fbe66c394a65f4c2793698365672e5fc073693b4900c7e15a5b81615", "block_index": 120, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729539204, + "block_time": 1729600624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "60d3eb784e7053d9ea02fec8b1ace9d88a1d88b89b2e0e6f07fba180a8740c02", + "tx_hash": "b2afd9dd0cc770db309c03dfbf91178206b73bc188f9bc4bcbd40c9e5e522747", "block_index": 119, - "source": "bcrt1qrxzhp76gz0ylrz27xh6m0fuag607eflff98khh", + "source": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729539200, + "block_time": 1729600619, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "33477f55f645d71f9cdd38e175d3267ca3dd704eeeb61773d02dc2c609d88c26", + "tx_hash": "1f653e4ae30ba8e397ef6cc128249cce0fa9e5b6dcb257d24e740a2b22223e2c", "block_index": 118, - "source": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729539196, + "block_time": 1729600615, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "3d3ebe47cdd9eb4144552306c7e10f02ea01c8e1ddb9f6dfbfa88660099997a2", + "tx_hash": "5bdfa64b6a4284aab2143f1f7f88c9bd0a90c767c6e467e05f4d6331ecd8a0e1", "block_index": 117, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729539192, + "block_time": 1729600611, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7711,9 +7657,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7722,7 +7668,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7732,7 +7678,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -7748,9 +7694,9 @@ }, { "tx_index": 29, - "tx_hash": "dc00a1ed7cfb037439c2160332f950d8b34d85c8b13502ffb694562001335701", + "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", "block_index": 142, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7759,7 +7705,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7769,7 +7715,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539298, + "block_time": 1729600717, "asset_info": { "divisible": true, "asset_longname": null, @@ -7785,9 +7731,9 @@ }, { "tx_index": 30, - "tx_hash": "35ec70b0a2764c50b4609f0e32541676c795160f154238d9339df8428ade9320", + "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", "block_index": 150, - "source": "mnizsbWSmdSHrHsW3qa6HXoXc5Gg71TiEe", + "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7795,10 +7741,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "4a0a8441287387458928a3041406e12121d9f7904945859710151b6f6d1e3197", - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7806,7 +7752,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539332, + "block_time": 1729600750, "asset_info": { "divisible": true, "asset_longname": null, @@ -7822,18 +7768,18 @@ }, { "tx_index": 33, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7843,7 +7789,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -7864,9 +7810,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7875,7 +7821,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7885,7 +7831,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -7905,19 +7851,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7925,7 +7871,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7940,7 +7886,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -7954,19 +7900,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7974,7 +7920,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7989,7 +7935,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -8008,20 +7954,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -8042,20 +7988,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -8078,12 +8024,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "tx_index": 41, - "utxo": "dab7e13bdf6e664837899e345d780c9f202b026868cd536eed6f64fe9384178d:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "utxo": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "divisible": true, "asset_longname": null, @@ -8095,16 +8041,16 @@ }, { "block_index": 154, - "address": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "address": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "divisible": true, "asset_longname": null, @@ -8125,27 +8071,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 561, @@ -8154,14 +8100,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -8172,9 +8118,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 560, @@ -8183,9 +8129,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -8195,24 +8141,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -8222,9 +8168,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 558, @@ -8236,15 +8182,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } }, "/v2/events/counts": { @@ -8279,16 +8225,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -8298,9 +8244,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 557, @@ -8310,12 +8256,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -8325,9 +8271,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 554, @@ -8337,39 +8283,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", - "utxo_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "block_time": 1729539524, + "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "divisible": true, "asset_longname": null, @@ -8379,36 +8325,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "block_time": 1729539510 + "block_time": 1729600951 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729539510, + "block_time": 1729600951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "block_time": 1729539510 + "block_time": 1729600951 } ], "next_cursor": 536, @@ -8425,27 +8371,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8460,7 +8406,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -8474,27 +8420,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae", + "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", "block_index": 147, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "destination": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "last_status_tx_hash": null, - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8509,7 +8455,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729539319, + "block_time": 1729600737, "asset_info": { "divisible": true, "asset_longname": null, @@ -8523,19 +8469,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "3a5adbed23255285387d27551bf8f37d165238aee354e594a9a342f598404336", + "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8543,7 +8489,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8558,7 +8504,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539293, + "block_time": 1729600713, "asset_info": { "divisible": true, "asset_longname": null, @@ -8572,19 +8518,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "d61aa484f6c20d2f9f9aa064ae03c4f8af8f5fc44c5d9d0c6ff1477b9fca0939", + "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", "block_index": 140, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4f7738c313e2b10823a02dfbb084910208537ac64a23e0fd9bfab8012f8fa6a0", + "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8592,7 +8538,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8607,7 +8553,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729539289, + "block_time": 1729600708, "asset_info": { "divisible": true, "asset_longname": null, @@ -8626,10 +8572,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8637,7 +8583,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -8650,10 +8596,10 @@ }, { "tx_index": 62, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8661,11 +8607,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -8674,10 +8620,10 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8685,7 +8631,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -8698,10 +8644,10 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8709,11 +8655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -8722,10 +8668,10 @@ }, { "tx_index": 56, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8733,11 +8679,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -8752,14 +8698,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -8774,20 +8720,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "22e53c1e51e03ae539a6db383da05a9f2eb53088fd05fb42887f4b3a178dc967", + "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -8802,20 +8748,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729539375, + "block_time": 1729600803, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "081a1b2db8ae4b03be96796fb52a07a531fb9a198b44b98b7b5864281038f718", + "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -8830,20 +8776,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539371, + "block_time": 1729600799, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "85578cf8517d8d0416602a14e03f4e979c18881eb240d51d22e1d55ef9dec14d", + "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -8858,20 +8804,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539367, + "block_time": 1729600795, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02", + "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "issuer": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "transfer": false, "callable": false, "call_date": 0, @@ -8886,7 +8832,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539363, + "block_time": 1729600791, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8897,14 +8843,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "transfer": false, "callable": false, "call_date": 0, @@ -8919,7 +8865,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8928,16 +8874,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -8948,16 +8894,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" } ], @@ -8968,9 +8914,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "block_index": 138, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8978,14 +8924,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539280, + "block_time": 1729600700, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "0d907b0a040fb6bb7f8923fa0dd88f22253c6495015234101a6d108a4e896f3d", + "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", "block_index": 137, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8993,7 +8939,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539277, + "block_time": 1729600696, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9003,9 +8949,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "block_index": 138, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9013,17 +8959,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729539280, + "block_time": 1729600700, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9048,7 +8994,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729539353, + "block_time": 1729600782, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9057,10 +9003,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9085,7 +9031,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729539269, + "block_time": 1729600687, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9097,10 +9043,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9125,7 +9071,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729539252, + "block_time": 1729600670, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9137,10 +9083,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9165,7 +9111,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729539247, + "block_time": 1729600666, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9177,10 +9123,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "291c6f8738588bac30d947d856c581e8be4430449c94a54d86a61eb61e6882c7", + "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9205,7 +9151,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729539226, + "block_time": 1729600646, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9223,22 +9169,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9247,22 +9193,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a7486862d3e4456d1632710a164fbd85e2a6bc980edc4c6695939b7a431eb7ea", + "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", "tx_index": 21, "block_index": 134, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539264, + "block_time": 1729600683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9271,22 +9217,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6b0b6971f5a8cceedb358c8201024c0dfc905dac2133c6795bdc472b3f266d9c", + "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539260, + "block_time": 1729600679, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9295,22 +9241,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5fbc3c5e12fd4dd1997863af1aaca5514e1dcc00b4dd97e42788fa1b75941a73", + "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", "tx_index": 19, "block_index": 132, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "db43043eadb83265c506a65bc68f96a7f5837a7db5053e314d124a3a5cc8567c", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539256, + "block_time": 1729600674, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9319,22 +9265,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "15cbb083e55df10a939e89ba7e6289f7573b1ae141c47d85c66a5470173f096c", + "tx_hash": "187826b679691eb2ff6d02b9679bfeca9f1e76abb8b1d0b8c0bc2cfa337245f8", "tx_index": 17, "block_index": 129, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "fairminter_tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539243, + "block_time": 1729600662, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9348,22 +9294,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, "block_index": 136, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -9380,8 +9326,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae", - "address": "bcrt1qr6ke7l889g9wuaq04cg0m2hazp0a5vdtueust7" + "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", + "address": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy" }, { "vout": 2, @@ -9389,8 +9335,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02", - "address": "bcrt1qrxzhp76gz0ylrz27xh6m0fuag607eflff98khh" + "txid": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", + "address": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma" } ], "next_cursor": null, @@ -9399,28 +9345,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a" + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155" }, { - "tx_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41" + "tx_hash": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465" }, { - "tx_hash": "223d9835a0b93db907906ea18f49e40b106ef48b19a6934904e46914a3282a5e" + "tx_hash": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671" }, { - "tx_hash": "69d649846d6b6d72ac5a26711a5b63a45bd293920c3bd9a2ee41d48f631fc6ab" + "tx_hash": "184dd6bb2594bb7e7b2a423ff30889d2b158a92d4eddb5636b4821bea502d080" }, { - "tx_hash": "49a50eaab7725193aac10cc01d4bc6f7eae484aed04c6798c767ef861ed08cb1" + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" }, { - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca" + "tx_hash": "ebcfb23c56795fb111ae0af96d7afc0c04d32e1e33a916d4de6298d5694c3acc" }, { - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de" + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6" }, { - "tx_hash": "0fc4017e21d2550ba7c5985f1cecf6c67285441f5721797db4cf647cff59bdf0" + "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6" } ], "next_cursor": null, @@ -9429,7 +9375,7 @@ "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { "block_index": 8, - "tx_hash": "1fefaa944cd2b172be2e5e7a9aa5941928348c48a8e109c9c7af463795ee7df7" + "tx_hash": "6d129d2a3f91a86fee7a32c934229380ce59e1a886037b66785a5788ceaa68d8" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9440,17 +9386,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "e6794ef4415b9a3744cc6e377ab7a9460550b28b5835ba6ae49258e8300c1cae" + "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02d393acf5309fd41fb39330532a9a699cf3d020d9b9eaf40af9f8894e1fe35011" + "result": "030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101022b2b7328c1ce8fecdfd2b82c1f92afff11e172dff021955a515c01a8ecba8a0100000000ffffffff03e803000000000000160014f9b38e2d42efb9307785475778151ec301966ac200000000000000000c6a0a7d82b6f3e055a09e357cdced082701000000160014e45967b7fecba92e6994bb5717d89bed54a185bf0247304402201b69df03b74908caced340d83b3ae8725acd0e9dfa04794749c2476b37dcc78702202ac14b0889b1e66f38545229ef6488f9dd6d365f17c05fe94c2025b2b19b5e89012103514d859a6b04eb531cc4cf85550585f580466b31f72710b8da1de2be597c5e1e00000000" + "result": "020000000001013dfdf08ba098a35f8faf45b2e8766aecfe8f87ce1da847fbcf4d258e70c624b60100000000ffffffff03e803000000000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589000000000000000000c6a0a925e752ab5d15d326204dced0827010000001600147126c968f7e1cd9e1335a14c9336b6d74d73a8b802473044022075d5eea6a3e1d76ab724b1c42e7ae768d9b460fb50531f5c092d38338c262729022046631e2cc901af9c712fea6929ed245eb6e7f45822cca0cb0ec29c01322077330121038e94ba4d0049a559568ec0807dd86fd0d6d15fb01e7ee938979cae58f3fd734500000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9473,27 +9419,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63 }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "quantity": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, "asset_info": { "divisible": true, @@ -9504,22 +9450,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -9529,22 +9475,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 196, - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -9554,30 +9500,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729539528.51405, + "block_time": 1729600969.716605, "btc_amount": 0, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "destination": "", "fee": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, - "utxos_info": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314:1", + "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -9591,7 +9537,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, @@ -9600,19 +9546,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -9622,7 +9568,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, @@ -9631,27 +9577,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63 }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "quantity": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, "asset_info": { "divisible": true, @@ -9662,22 +9608,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "CREDIT", "params": { - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -9687,22 +9633,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "asset": "XCP", "block_index": 196, - "event": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -9712,30 +9658,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 }, { - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729539528.51405, + "block_time": 1729600969.716605, "btc_amount": 0, - "data": "0200000000000000010000000000002710806feccc6eea57e305353dbb4066d049f14d2df4ac", + "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", "destination": "", "fee": 10000, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", - "tx_hash": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", "tx_index": 63, - "utxos_info": "a0917914f8e16a7bc73e72e286070e6d4e0d7c090516ddbbad356a0d12abd314:1", + "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "memo": null, "asset_info": { "divisible": true, @@ -9749,7 +9695,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729539528.51405 + "timestamp": 1729600969.716605 } ], "next_cursor": null, @@ -9771,15 +9717,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", "block_index": 196, - "block_time": 1729539524, + "block_time": 1729600965, "difficulty": 545259519, - "previous_block_hash": "54a08e10f1108cf0fb8f341ff738b181a89065f6cf64b9117c2d21a181f6b412" + "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4" }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 544, @@ -9791,17 +9737,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6170e59b0cb76bbf5f5e8b72ba4a971a5abc7f7154c8ad7853262de6047837c2", + "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", "block_index": 196, - "block_time": 1729539524, + "block_time": 1729600965, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "fee": 0, - "source": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "utxos_info": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1 d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9811,9 +9757,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 545, @@ -9827,16 +9773,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "out_index": 0, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 277, @@ -9849,15 +9795,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "f76515b3b90c71dc33a051ae4dfd966ce1e497d4694382b237914e6a007bfcd7", - "messages_hash": "64422068c69c6cb3378c878c1a75732ebab2699620c9d3e8dfff6b6e0c8fc47a", + "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", + "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", "transaction_count": 1, - "txlist_hash": "6bde31fecb2b87f833b3cf241442f1ebd26e2a103822bafb69de93e1a6687a55", - "block_time": 1729539524 + "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", + "block_time": 1729600965 }, "tx_hash": null, "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 549, @@ -9870,12 +9816,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62 }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 548, @@ -9891,12 +9837,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 1500000000, "tx_index": 62, - "utxo": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", - "utxo_address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", - "block_time": 1729539524, + "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -9906,9 +9852,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 553, @@ -9920,16 +9866,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -9939,9 +9885,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 557, @@ -9955,14 +9901,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "memo": null, "quantity": 10000, - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "status": "valid", - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca", + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", "tx_index": 55, - "block_time": 1729539479, + "block_time": 1729600911, "asset_info": { "divisible": true, "asset_longname": null, @@ -9972,9 +9918,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "04a59d92d90fa9c4601b76cb0b6cf070edef6454c5df132df9f1371ee94fa8ca", + "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", "block_index": 189, - "block_time": 1729539479 + "block_time": 1729600911 } ], "next_cursor": null, @@ -9988,15 +9934,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "tx_index": 56, - "block_time": 1729539483, + "block_time": 1729600915, "asset_info": { "divisible": true, "asset_longname": null, @@ -10006,9 +9952,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "48109a9c868cbff39f84b5283761f02dd6b311d9e05f43e4fd535a4d82dc8f8f", + "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", "block_index": 190, - "block_time": 1729539483 + "block_time": 1729600915 } ], "next_cursor": 509, @@ -10031,20 +9977,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "status": "valid", - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "tx_index": 60, - "block_time": 1729539510, + "block_time": 1729600951, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "065da7b0cb1947773a868aedeb13ecb0187bdd793e86c9c0c04e9adff1b896de", + "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", "block_index": 194, - "block_time": 1729539510 + "block_time": 1729600951 } ], "next_cursor": null, @@ -10061,15 +10007,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "tx_index": 41, - "block_time": 1729539349, + "block_time": 1729600767, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10083,9 +10029,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "ffdcbf9e315885b39cfb2c05915b2eb0b613fd4e637c0223ea455f0a02805da2", + "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", "block_index": 154, - "block_time": 1729539349 + "block_time": 1729600767 } ], "next_cursor": null, @@ -10106,11 +10052,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729539380 + "block_time": 1729600808 }, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "block_index": 161, - "block_time": 1729539380 + "block_time": 1729600808 } ], "next_cursor": 381, @@ -10133,22 +10079,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", "transfer": false, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "tx_index": 48, - "block_time": 1729539380, + "block_time": 1729600808, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "bca44c35ced564248cbf070dcb043ea82827988c3ce0f7ae34b5bd1294fada9c", + "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", "block_index": 161, - "block_time": 1729539380 + "block_time": 1729600808 } ], "next_cursor": 388, @@ -10163,12 +10109,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qj2udwpxfa73cqstwwrcmxql7n35ylaen0kr8vy", + "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", "status": "valid", "tag": "64657374726f79", - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "tx_index": 61, - "block_time": 1729539514, + "block_time": 1729600956, "asset_info": { "divisible": true, "asset_longname": null, @@ -10178,9 +10124,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "9dd877d29d046eaf79d2a6d479eaa71f7d7eeb925999a4516e0def474f60e043", + "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", "block_index": 195, - "block_time": 1729539514 + "block_time": 1729600956 } ], "next_cursor": 157, @@ -10205,11 +10151,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "open", - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "tx_index": 59, - "block_time": 1729539506, + "block_time": 1729600947, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10233,9 +10179,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "12f59e68eb1d4aa427f3b5ee130109aa1186da2d0c92e057126958b46b4ffbcf", + "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", "block_index": 193, - "block_time": 1729539506 + "block_time": 1729600947 } ], "next_cursor": 516, @@ -10253,20 +10199,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f", + "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", "tx0_index": 51, - "tx1_address": "bcrt1qdlkvcmh22l3s2dfahdqxd5zf79xjma9v90rxm8", + "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "tx1_index": 54, - "block_time": 1729539474, + "block_time": 1729600907, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10285,9 +10231,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "538a0d34b255c53468bcdad2e2d7a06db1571ade263e45f76593329aeeec8c41", + "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", "block_index": 188, - "block_time": 1729539474 + "block_time": 1729600907 } ], "next_cursor": 475, @@ -10300,11 +10246,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8" + "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0" }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 } ], "next_cursor": 490, @@ -10317,11 +10263,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60" + "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645" }, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_time": 1729539470 + "block_time": 1729600903 } ], "next_cursor": null, @@ -10333,13 +10279,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", + "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", "status": "completed" }, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_time": 1729539470 + "block_time": 1729600903 } ], "next_cursor": 454, @@ -10353,18 +10299,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "order_match_id": "df1faddd2a2bc734b619a3d4968d5798d23731ebce533790c8a53cb2ec25948f_9e43a67f991468c2b197378a5872baaec0cbdb5217acf194b11ce9c32b35ab60", - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "status": "valid", - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "tx_index": 53, - "block_time": 1729539470, + "block_time": 1729600903, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "433ab0ea49dec64db95bff04ea5bf5a1a4b25057bdabf6bc34b7aea120e11633", + "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", "block_index": 187, - "block_time": 1729539470 + "block_time": 1729600903 } ], "next_cursor": null, @@ -10377,16 +10323,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "4aa57b6a8b232185f43a4cbd382ace92cfc09f7f336a620ef6d57cb3b30f0bf8", - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "tx_index": 58, - "block_time": 1729539502 + "block_time": 1729600933 }, - "tx_hash": "6c62a742af558dcd1016d2a71efcca0a846b38284825a0dc77bf5d6b9f2dfe73", + "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", "block_index": 192, - "block_time": 1729539502 + "block_time": 1729600933 } ], "next_cursor": null, @@ -10399,13 +10345,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "block_time": 1729539395 + "order_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "block_time": 1729600834 }, "tx_hash": null, "block_index": 184, - "block_time": 1729539395 + "block_time": 1729600834 } ], "next_cursor": 460, @@ -10418,14 +10364,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "faf8f07bf29c005d2a9b7b95d634aefb8d4c62019293db727c9db73883c9ae47_a4f781da21ae3d263fa756a5cb8fdfdd650ecc7b61a3e1a5342e67781a783212", - "tx0_address": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "tx1_address": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", - "block_time": 1729539395 + "order_match_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "block_time": 1729600834 }, "tx_hash": null, "block_index": 184, - "block_time": 1729539395 + "block_time": 1729600834 } ], "next_cursor": null, @@ -10443,14 +10389,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "origin": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "satoshirate": 1, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "tx_index": 33, - "block_time": 1729539315, + "block_time": 1729600733, "asset_info": { "divisible": true, "asset_longname": null, @@ -10463,9 +10409,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "block_index": 146, - "block_time": 1729539315 + "block_time": 1729600733 } ], "next_cursor": 254, @@ -10480,9 +10426,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": 0, - "tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", + "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", "asset_info": { "divisible": true, "asset_longname": null, @@ -10492,9 +10438,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 302, @@ -10508,13 +10454,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mnizsbWSmdSHrHsW3qa6HXoXc5Gg71TiEe", + "destination": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", "dispense_quantity": 10, - "dispenser_tx_hash": "35ec70b0a2764c50b4609f0e32541676c795160f154238d9339df8428ade9320", - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", - "tx_hash": "eb8e726f3aba4011de694df07774c7d0552239ca3018fca6bb584009ae709b21", + "dispenser_tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx_hash": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", "tx_index": 31, - "block_time": 1729539306, + "block_time": 1729600725, "asset_info": { "divisible": true, "asset_longname": null, @@ -10524,9 +10470,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "eb8e726f3aba4011de694df07774c7d0552239ca3018fca6bb584009ae709b21", + "tx_hash": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", "block_index": 144, - "block_time": 1729539306 + "block_time": 1729600725 } ], "next_cursor": null, @@ -10541,14 +10487,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qu3vk0dl7ew5ju6v5hdt30kyma422rpdl8xqn92", + "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a91f90a57b916ad849061784d884bd9826959c8e70f08e2e74fc244e4ba32310", - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -10559,9 +10505,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 280, @@ -10576,19 +10522,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qlxecut2za7unqau9gaths9g7cvqev6kztzx0eg", + "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "tx_index": 25, "value": 66600.0, - "block_time": 1729539280, + "block_time": 1729600700, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "bc26386dfc9cdc4cd5a32823937c05781cea8f1df83db76753c7efc08230a6ec", + "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", "block_index": 138, - "block_time": 1729539280 + "block_time": 1729600700 } ], "next_cursor": 213, @@ -10619,12 +10565,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "start_block": 0, "status": "open", - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "tx_index": 42, - "block_time": 1729539353, + "block_time": 1729600782, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10632,9 +10578,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "18a2aa4370d81f196aed60088f4ded51c3be32be47adba760b382df9cf064a6b", + "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", "block_index": 155, - "block_time": 1729539353 + "block_time": 1729600782 } ], "next_cursor": 196, @@ -10647,11 +10593,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "a595c90ab750bbb387c4528fab36da9ec3009b65c36eae9869e465bf474cb5f6" + "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c" }, "tx_hash": null, "block_index": 130, - "block_time": 1729539247 + "block_time": 1729600666 } ], "next_cursor": 110, @@ -10667,17 +10613,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "6864c03dd0911a051c24373b6a047eebf150fc495ac97888b315812d51715346", + "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", "paid_quantity": 34, - "source": "bcrt1q7l4wz53zj7tcsm7s5rqrspvdc98thuep6pyhkk", + "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", "status": "valid", - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "tx_index": 23, - "block_time": 1729539273, + "block_time": 1729600691, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, @@ -10685,9 +10631,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "7bbccd9f3e4db3324f6bf971311959970c58c96100dc2c11dce9f059a624a1f0", + "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", "block_index": 136, - "block_time": 1729539273 + "block_time": 1729600691 } ], "next_cursor": 190, @@ -10701,28 +10647,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553:1", + "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "status": "valid", - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "tx_index": 39, - "block_time": 1729539340, + "block_time": 1729600759, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d5c3847058046181372a0c9a597bd2cfd67b6ef7c177bcf63771754bb719f553", + "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", "block_index": 152, - "block_time": 1729539340 + "block_time": 1729600759 } ], "next_cursor": 296, @@ -10736,28 +10682,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qkp2qrhrxgzzlx0l3s6xarn8ajn3n5t77p95edg", + "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "a36880934b79a2781c05b2798632c55c1fb520ea4cd9b568e76b0147df04bd1a:0", + "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", "status": "valid", - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "tx_index": 38, - "block_time": 1729539336, + "block_time": 1729600754, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5hecryrprthdq76yl9juyej0ewutn3ztnyvr3t", + "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c40081156faaec979607d8a30cb70a11a096a403fa5bc53b9c3c307d2271669a", + "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", "block_index": 151, - "block_time": 1729539336 + "block_time": 1729600754 } ], "next_cursor": null, @@ -10771,14 +10717,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9:0", + "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", "msg_index": 1, "quantity": 1500000000, - "source": "8abaeca8015c515a9521f0df72e111ffaf921f2cb8d2dfec8fcec128732b2b02:1", + "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", "status": "valid", - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "tx_index": 62, - "block_time": 1729539524, + "block_time": 1729600965, "asset_info": { "divisible": true, "asset_longname": null, @@ -10788,9 +10734,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "d3708d8094dd67dfab4922016723ad6a624d2753b33b61ac047076b087931ff9", + "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", "block_index": 196, - "block_time": 1729539524 + "block_time": 1729600965 } ], "next_cursor": 555, @@ -10805,17 +10751,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwt93j38jza7mma9luld0e0wgdk7h44wj54tzqt", + "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", "status": "valid", - "tx_hash": "8f53b933c75c6287892dd9a2784df9a8083cc903e69796d5774d348f9604e349", + "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", "tx_index": 9, - "block_time": 1729539209, + "block_time": 1729600628, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "8f53b933c75c6287892dd9a2784df9a8083cc903e69796d5774d348f9604e349", + "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", "block_index": 121, - "block_time": 1729539209 + "block_time": 1729600628 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py index 875cedf443..6e4102f451 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_1_fairminter.py @@ -645,6 +645,23 @@ }, ], }, + { + "url": "assets/FAIRMINTA", + "result": { + "asset": "FAIRMINTA", + "asset_id": "1046814266082", + "asset_longname": "", + "confirmed": True, + "description": "", + "divisible": True, + "first_issuance_block_index": 122, + "issuer": "$ADDRESS_1", + "last_issuance_block_index": 125, + "locked": False, + "owner": "$ADDRESS_1", + "supply": 100 * 10**8, + }, + }, ], }, ] diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index a5d5fb9661..138827101e 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -42,6 +42,7 @@ IMPORTANT: This update requires an automatic reparse from block 865999. However, - Add the following new routes: - `/v2/fairmints` - `/v2/fairmints/` +- `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` ## CLI From 2d2a8b67afd11b0bc0f3fcb872634e20ed5dc2e8 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 22 Oct 2024 13:06:57 +0000 Subject: [PATCH 26/71] rename functions --- apiary.apib | 3592 ++++++++--------- .../counterpartycore/lib/api/queries.py | 10 +- .../counterpartycore/lib/api/routes.py | 4 +- .../test/regtest/apidoc/apicache.json | 3246 +++++++-------- .../test/regtest/testscenarios.py | 2 +- dredd.yml | 4 +- 6 files changed, 3429 insertions(+), 3429 deletions(-) diff --git a/apiary.apib b/apiary.apib index 7a35e4a9aa..6cc10dc4ef 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-22 12:43:02.520452. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-22 13:04:14.091746. 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": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", "block_index": 196, - "block_time": 1729600965, + "block_time": 1729602237, "difficulty": 545259519, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4" + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107" }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", "block_index": 196, - "block_time": 1729600965, + "block_time": 1729602237, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "fee": 0, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1: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": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "out_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "block_time": 1729600965, + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "block_time": 1729602237, "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": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "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": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "memo": null, "quantity": 10000, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "status": "valid", - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", "tx_index": 55, - "block_time": 1729600911, + "block_time": 1729602202, "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": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", "block_index": 189, - "block_time": 1729600911 + "block_time": 1729602202 } ], "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": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "tx_index": 56, - "block_time": 1729600915, + "block_time": 1729602207, "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": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "block_time": 1729600915 + "block_time": 1729602207 } ], "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": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "status": "valid", - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "block_time": 1729600951 + "block_time": 1729602224 } ], "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": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "tx_index": 41, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "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": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "block_time": 1729600767 + "block_time": 1729602058 } ], "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": 1729600808 + "block_time": 1729602088 }, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "block_index": 161, - "block_time": 1729600808 + "block_time": 1729602088 } ], "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": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", "transfer": false, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "tx_index": 48, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "block_index": 161, - "block_time": 1729600808 + "block_time": 1729602088 } ], "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": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "tx_index": 61, - "block_time": 1729600956, + "block_time": 1729602228, "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": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "block_index": 195, - "block_time": 1729600956 + "block_time": 1729602228 } ], "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": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "open", - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, - "block_time": 1729600947, + "block_time": 1729602219, "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": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 } ], "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": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "tx0_index": 51, - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx1_index": 54, - "block_time": 1729600907, + "block_time": 1729602198, "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": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "block_index": 188, - "block_time": 1729600907 + "block_time": 1729602198 } ], "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": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0" + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db" }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 } ], "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": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645" + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b" }, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_time": 1729600903 + "block_time": 1729602194 } ], "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": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "status": "completed" }, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_time": 1729600903 + "block_time": 1729602194 } ], "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": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "status": "valid", - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "tx_index": 53, - "block_time": 1729600903, + "block_time": 1729602194, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_time": 1729600903 + "block_time": 1729602194 } ], "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": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "tx_index": 58, - "block_time": 1729600933 + "block_time": 1729602215 }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 } ], "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": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "block_time": 1729600834 + "order_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "block_time": 1729602113 }, "tx_hash": null, "block_index": 184, - "block_time": 1729600834 + "block_time": 1729602113 } ], "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": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "block_time": 1729600834 + "order_match_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "block_time": 1729602113 }, "tx_hash": null, "block_index": 184, - "block_time": 1729600834 + "block_time": 1729602113 } ], "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": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "satoshirate": 1, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "tx_index": 33, - "block_time": 1729600733, + "block_time": 1729602023, "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": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "block_index": 146, - "block_time": 1729600733 + "block_time": 1729602023 } ], "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": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "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": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", + "destination": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", "dispense_quantity": 10, - "dispenser_tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "tx_hash": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", + "dispenser_tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx_hash": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", "tx_index": 31, - "block_time": 1729600725, + "block_time": 1729602015, "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": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", + "tx_hash": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", "block_index": 144, - "block_time": 1729600725 + "block_time": 1729602015 } ], "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": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "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": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "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": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "tx_index": 25, "value": 66600.0, - "block_time": 1729600700, + "block_time": 1729601990, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "block_index": 138, - "block_time": 1729600700 + "block_time": 1729601990 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "start_block": 0, "status": "open", - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "tx_index": 42, - "block_time": 1729600782, + "block_time": 1729602062, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "block_index": 155, - "block_time": 1729600782 + "block_time": 1729602062 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c" + "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216" }, "tx_hash": null, "block_index": 130, - "block_time": 1729600666 + "block_time": 1729601956 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "paid_quantity": 34, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "status": "valid", - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "block_index": 136, - "block_time": 1729600691 + "block_time": 1729601981 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "tx_index": 39, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "block_index": 152, - "block_time": 1729600759 + "block_time": 1729602049 } ], "next_cursor": 296, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", + "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", "status": "valid", - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "tx_index": 38, - "block_time": 1729600754, + "block_time": 1729602045, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "block_index": 151, - "block_time": 1729600754 + "block_time": 1729602045 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "msg_index": 1, "quantity": 1500000000, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "status": "valid", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 555, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", + "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", "status": "valid", - "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", + "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", "tx_index": 9, - "block_time": 1729600628, + "block_time": 1729601918, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", + "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", "block_index": 121, - "block_time": 1729600628 + "block_time": 1729601918 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", "difficulty": 545259519, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", - "block_time": 1729600956, - "previous_block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", + "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_time": 1729602228, + "previous_block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", "difficulty": 545259519, - "ledger_hash": "e48b67326c9efd18380dad32fbed87d7fe390d83de7bcb3f6b157e6b5ef956f1", - "txlist_hash": "041fd68016df50126076dfb0a738da62ef83347efd3a672e616dad9ca2e7d200", - "messages_hash": "b7551fd65d852da0d472fe3f7ce12b0a39c92b628d3d9d5299215464355fa1f5", + "ledger_hash": "5e641bd94b5742c5d23a62f7b8dcc9e24c7b488635d3f17823f3db0d54cf58a5", + "txlist_hash": "efe3e0fab00782d7e5df98f7ea91c90785ca938cb58537ed5e943a4a208a2ef9", + "messages_hash": "c10fdcf5d9ed8c8f5999b936c5dc57dda97737990c1e2ac3fc4c841323e8c01a", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", - "block_time": 1729600951, - "previous_block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", + "block_time": 1729602224, + "previous_block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", "difficulty": 545259519, - "ledger_hash": "dc5a06cfc520a5d57cafae40d5e79dd7a3c17bbc3136daf6ad97733d332be6f6", - "txlist_hash": "2236faa5272fc565cdf8ae0d25cdcc774d5338b06e526427a7783458ceee8176", - "messages_hash": "f204bc1337b1509f81a1b2244859fbdc2552f60c8e1ae5b60cd99f795a1fc604", + "ledger_hash": "9793950b57a496010adc84f7a05d3b70530da75760fff8c15b65e6e42f019045", + "txlist_hash": "69682a702da947c430f207f5bea127bdbcb09f4335e384b47dea9d733a606deb", + "messages_hash": "ba2714ef233bf18d9733f7b97f1a1596c071fc81c71e8246dc3cbdd87bb31c84", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", - "block_time": 1729600947, - "previous_block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_time": 1729602219, + "previous_block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", "difficulty": 545259519, - "ledger_hash": "3a315522b7c252ceb1380e21eb29fc5d72017b4d72cc880b59ae9798537ba933", - "txlist_hash": "e837b2dad7d07a242cbaf531cebcee8ec450f76e549feb61ad16da9b4d51457e", - "messages_hash": "96e9b84c58dbb670f928c5c78c4e418d82c442aba945ae83066e5a711433b078", + "ledger_hash": "2c63fbbc09b4d3cc35ad80faeb9b7b6b8cb4676bcd9b300bcf86c1576fcc8416", + "txlist_hash": "38969dc42c309021c04c5020181b99552b3889af1543c9a435b47a6dee175e78", + "messages_hash": "77e75be3e6fecb2c027ed1dd3f6c7c054c70b1ca6e2f41b72b2a8f7b71b6fb2a", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", - "block_time": 1729600933, - "previous_block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", + "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_time": 1729602215, + "previous_block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", "difficulty": 545259519, - "ledger_hash": "c3111aa657e1a7d5e2c9aad182edaeab7745e4f2a197af20360f741cb5259ad8", - "txlist_hash": "807bcd13ec86e30acb4098fe72a6dc1ccbff59da7659962586d5b43bd85697e7", - "messages_hash": "62cbf318197e5a7cedb01b9d332cafe5dac47201a0abbf2317c30c4de8fed316", + "ledger_hash": "53a652903930bb36aa93e893db14990956b7df3b4f5d7887571dcce7c731964a", + "txlist_hash": "0d4223380ddaa6b1b42296d71e411154a3464763b0c8a52e8fd3bdf729cbeaa5", + "messages_hash": "a80fc8473b7714026af7ac37936d01cc200232a0dd550687aa36f9b52b1bb278", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", "difficulty": 545259519, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca` (str, required) - The index of the block to return + + block_hash: `7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", "difficulty": 545259519, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 561, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 560, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" } ], "next_cursor": 558, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 557, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 554, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "object_id": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "block_index": 184, "confirmed": true, - "block_time": 1729600834 + "block_time": 1729602113 }, { "type": "order", - "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, "confirmed": true, - "block_time": 1729600834 + "block_time": 1729602113 }, { "type": "order_match", - "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "block_index": 184, "confirmed": true, - "block_time": 1729600834 + "block_time": 1729602113 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "status": "valid", "confirmed": true, - "block_time": 1729600933 + "block_time": 1729602215 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "block_index": 195, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729600956, + "block_time": 1729602228, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -2568,17 +2568,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "block_index": 138, - "block_hash": "436a3ad2a03d7d359c1704ac59b27e367dd02865626c5bfc682796718797d09e", - "block_time": 1729600700, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "1a2bafcf6ed0a0f2d927ce5ecca2a825bdacae04d6a4767d3289bdd2adab566e", + "block_time": 1729601990, + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803:1", + "utxos_info": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2603,25 +2603,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_hash": "2faaacaebe28aa08cb56362cfd203652620ca3c6224b26f4b40655a8e3f0f088", - "block_time": 1729600903, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "68661f1299e623ecf2ed1209495013b7f01bab0631c0a658d57d11700e354d5e", + "block_time": 1729602194, + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "btc_amount": 2000, "fee": 10000, - "data": "0b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a406c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "data": "0b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd28dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "supported": true, - "utxos_info": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175:0", + "utxos_info": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "status": "valid" } }, @@ -2636,23 +2636,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", - "block_time": 1729600933, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_time": 1729602215, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "supported": true, - "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", + "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "status": "valid" } }, @@ -2667,17 +2667,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "block_index": 195, - "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", - "block_time": 1729600956, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_time": 1729602228, + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b:1", + "utxos_info": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2707,17 +2707,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "block_index": 146, - "block_hash": "3779dff124fe6d5ce31075972bbb2e2fcc4ee5acc22b1b2e580d3c68bc870edd", - "block_time": 1729600733, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "44f86da007e53e3d38f848b16a0f3c0d2f8e07ea35f7636276d87c5b90bb542a", + "block_time": 1729602023, + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890", + "data": "0c0000000000000001000000000000000100000000000027100000000000000001008092b5051f546edf56f17f264039d77d86944357d2", "supported": true, - "utxos_info": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a:1", + "utxos_info": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2729,7 +2729,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": "valid", "asset_info": { "divisible": true, @@ -2753,17 +2753,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2783,17 +2783,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "block_hash": "724102867d389c0623ead8edcdc111363d1e8ea42c94bc7b4eb472beab872f59", - "block_time": 1729600767, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "03e1f91f953c15ae8774739673483227404c83f3b4b82c067ff482561533b438", + "block_time": 1729602058, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c:1", + "utxos_info": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2806,7 +2806,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "block_index": 161, - "block_hash": "4161ba27bbea00dfedd4c73f3208b79ff6ac711c8b6c31741920396432f339cb", - "block_time": 1729600808, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "4d9964ea18748f9aba15757131877060215d1f66396b71e9311d6903446d0dfa", + "block_time": 1729602088, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52:1", + "utxos_info": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2873,17 +2873,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", - "block_time": 1729600947, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_time": 1729602219, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", + "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2926,17 +2926,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", "block_index": 189, - "block_hash": "5a59a868e4be17d595c103ab08afa966cb514e326e7069aa6ae2288610104f7d", - "block_time": 1729600911, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "block_hash": "151bca5d6042885cdeb2903973b5ee8246b6a6da61f1b05f1e7b47d90d1bea61", + "block_time": 1729602202, + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ef05fe482e497897dec9187c938a3627e18a4a92", + "data": "020000000000000001000000000000271080eddb83e7d0005a90f0f03950a23b9675325ea37c", "supported": true, - "utxos_info": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6:1", + "utxos_info": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2944,7 +2944,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "memo": null, "asset_info": { "divisible": true, @@ -2967,17 +2967,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", - "block_time": 1729600915, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", + "block_time": 1729602207, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", + "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2985,14 +2985,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -3000,7 +3000,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3026,23 +3026,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", - "block_time": 1729600951, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", + "block_time": 1729602224, + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ef05fe482e497897dec9187c938a3627e18a4a92017377656570206d7920617373657473", + "data": "0480eddb83e7d0005a90f0f03950a23b9675325ea37c017377656570206d7920617373657473", "supported": true, - "utxos_info": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155:1", + "utxos_info": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "memo": "sweep my assets" } @@ -3075,17 +3075,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3098,17 +3098,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "block_index": 195, - "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", - "block_time": 1729600956, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_time": 1729602228, + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b:1", + "utxos_info": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3140,7 +3140,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03013700ffffffff0200f2052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f0000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03014300ffffffff0200f2052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f170000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (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. @@ -3166,7 +3166,7 @@ Returns Counterparty information from a raw transaction in hex format. { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "013700", + "script_sig": "014300", "sequence": 4294967295, "coinbase": true } @@ -3174,7 +3174,7 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 5000000000, - "script_pub_key": "0014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f" + "script_pub_key": "0014ac259a46ca7b25183c056dd8cd8af381d44a2f17" }, { "value": 0, @@ -3185,8 +3185,8 @@ Returns Counterparty information from a raw transaction in hex format. "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63", - "tx_id": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63" + "tx_hash": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e", + "tx_id": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e" } } } @@ -3197,7 +3197,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809` (str, required) - Transaction hash + + tx_hash: `98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c` (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. @@ -3208,18 +3208,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "4d3d762d1f1a4969446506e4838c7b8de0610fab26b0d3392865ca569c2144fd", + "hash": "808ebf21eb43f3966393d863914f83ac21e0771f465b3f8019f288326d01922a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3229,20 +3229,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e7f2fe586259e52b680ac5b3107efd14f5263868caf70a245966604bba646e8e6a97222f38c9b7acdc187f3460f43" + "script_pub_key": "6a2edba97a08c291984bc2696c4bad0621d2c539ed154f42323db37ff3874edda0307d13d6e7118b61073ee57cc3ac43" }, { "value": 4999955000, - "script_pub_key": "0014ef05fe482e497897dec9187c938a3627e18a4a92" + "script_pub_key": "0014eddb83e7d0005a90f0f03950a23b9675325ea37c" } ], "vtxinwit": [ - "304402200a3ddf7e170e5635497621716217a6bb392a26d4de83178f59d1620fc285890b02203cc6af7613eb8252fb5914b5cc25e70d4863e67f46eb0ad7b7d985b2e351831d01", - "023f1326cd06078ea5f8d19f55259ac8c05bcd39e6d7b694ddaa375b4e68ff74b2" + "3044022066154309fabb70c77ce0733c25808f035de015e692f0d94e42b7a7d446d56a2e02200e2d82f11584977cfda5e611503ebd3e5f436872db8aed823e263c2f04cdc67d01", + "03ab0c4957149f74cffa275ca102e3ed301502bcd2086ca6a7e5283755c86100e7" ], "lock_time": 0, - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", - "tx_id": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809" + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_id": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3250,7 +3250,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -3311,17 +3311,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3340,7 +3340,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (str, required) - The hash of the transaction + + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (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. @@ -3352,17 +3352,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3405,12 +3405,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 561, @@ -3419,14 +3419,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3437,9 +3437,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 560, @@ -3448,9 +3448,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -3460,24 +3460,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3487,9 +3487,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 558, @@ -3497,14 +3497,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "msg_index": 1, "quantity": 1500000000, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "status": "valid", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3514,9 +3514,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 557, @@ -3529,7 +3529,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (str, required) - The hash of the transaction to return + + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (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 @@ -3553,12 +3553,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 561, @@ -3567,14 +3567,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3585,9 +3585,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 560, @@ -3596,9 +3596,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -3608,24 +3608,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3635,9 +3635,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 558, @@ -3645,14 +3645,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "msg_index": 1, "quantity": 1500000000, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "status": "valid", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3662,9 +3662,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 557, @@ -3677,7 +3677,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (str, required) - The hash of the transaction to return + + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (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 @@ -3696,10 +3696,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3707,7 +3707,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3720,10 +3720,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3731,11 +3731,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -3753,7 +3753,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (str, required) - The hash of the transaction to return + + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (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 @@ -3773,27 +3773,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3808,7 +3808,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3852,16 +3852,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3871,9 +3871,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 557, @@ -3883,12 +3883,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3898,9 +3898,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 554, @@ -3910,24 +3910,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": null, @@ -3940,7 +3940,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (str, required) - The hash of the transaction to return + + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (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` @@ -3962,16 +3962,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -3981,9 +3981,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 557, @@ -3993,12 +3993,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -4008,9 +4008,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 554, @@ -4020,24 +4020,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": null, @@ -4052,7 +4052,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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 @@ -4076,7 +4076,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4086,7 +4086,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4097,7 +4097,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4107,7 +4107,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4118,7 +4118,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4128,7 +4128,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4139,7 +4139,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4149,7 +4149,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4160,7 +4160,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4170,7 +4170,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4187,7 +4187,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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 @@ -4206,17 +4206,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", - "block_time": 1729600947, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_time": 1729602219, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", + "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4252,23 +4252,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", - "block_time": 1729600933, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_time": 1729602215, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "supported": true, - "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", + "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "status": "valid" } }, @@ -4276,17 +4276,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 191, - "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", - "block_time": 1729600919, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", + "block_time": 1729602211, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", + "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4322,17 +4322,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", - "block_time": 1729600915, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", + "block_time": 1729602207, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", + "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4340,14 +4340,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4355,7 +4355,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4374,25 +4374,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_hash": "2faaacaebe28aa08cb56362cfd203652620ca3c6224b26f4b40655a8e3f0f088", - "block_time": 1729600903, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "68661f1299e623ecf2ed1209495013b7f01bab0631c0a658d57d11700e354d5e", + "block_time": 1729602194, + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "btc_amount": 2000, "fee": 10000, - "data": "0b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a406c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "data": "0b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd28dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "supported": true, - "utxos_info": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175:0", + "utxos_info": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "status": "valid" } }, @@ -4409,7 +4409,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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 @@ -4445,11 +4445,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "open", - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4473,24 +4473,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "block_index": 193, - "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729600947, + "block_time": 1729602219, "asset_info": { "divisible": true, "asset_longname": null, @@ -4500,25 +4500,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", "block_index": 193, - "block_time": 1729600947, + "block_time": 1729602219, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, - "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", + "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4550,40 +4550,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "tx_index": 58, - "block_time": 1729600933 + "block_time": 1729602215 }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729600933, + "block_time": 1729602215, "asset_info": { "divisible": true, "asset_longname": null, @@ -4593,9 +4593,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 } ], "next_cursor": 520, @@ -4608,7 +4608,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw,bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut,bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj` (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 @@ -4624,17 +4624,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "quantity": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, "asset_info": { "divisible": true, @@ -4645,22 +4645,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -4670,22 +4670,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 196, - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -4695,30 +4695,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729600969.716605, + "block_time": 1729602242.0374818, "btc_amount": 0, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "destination": "", "fee": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, - "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", + "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -4732,7 +4732,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, @@ -4745,7 +4745,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -4765,7 +4765,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4773,14 +4773,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4788,14 +4788,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4810,7 +4810,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4818,7 +4818,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4830,12 +4830,12 @@ Returns the balances of an address } ``` -### Get Balance By Address And Asset [GET /v2/addresses/{address}/balances/{asset}{?verbose}{&show_unconfirmed}] +### Get Balances By Address And Asset [GET /v2/addresses/{address}/balances/{asset}{?verbose}{&show_unconfirmed}] -Returns the balance of an address and asset +Returns the balances of an address and asset + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -4848,7 +4848,7 @@ Returns the balance of an address and asset { "result": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4873,7 +4873,7 @@ Returns the balance of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4923,16 +4923,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "asset_info": { "divisible": true, "asset_longname": null, @@ -4944,16 +4944,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "event": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "asset_info": { "divisible": true, "asset_longname": null, @@ -4965,20 +4965,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "event": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4986,20 +4986,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", + "event": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600795, + "block_time": 1729602075, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5011,16 +5011,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "event": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "tx_index": 39, - "utxo": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", - "utxo_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "utxo": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "utxo_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "confirmed": true, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5037,7 +5037,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5076,16 +5076,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "asset_info": { "divisible": true, "asset_longname": null, @@ -5097,16 +5097,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600919, + "block_time": 1729602211, "asset_info": { "divisible": true, "asset_longname": null, @@ -5118,16 +5118,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -5139,20 +5139,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5160,16 +5160,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "event": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600895, + "block_time": 1729602185, "asset_info": { "divisible": true, "asset_longname": null, @@ -5190,7 +5190,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address of the feed + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5225,7 +5225,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -5244,9 +5244,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", + "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", "block_index": 137, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5254,7 +5254,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600696, + "block_time": 1729601986, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5268,7 +5268,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -5287,14 +5287,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "5541ca001c9c70e380ae489ca063a58d4b0419d994859428514425b4496aa43c", + "tx_hash": "c517af74238fda6b2de028daa66be74f42674351f2feffb4031b31e29c04b838", "block_index": 112, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729600591, + "block_time": 1729601881, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5309,7 +5309,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -5328,10 +5328,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5339,7 +5339,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -5352,10 +5352,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5363,11 +5363,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5376,10 +5376,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5387,11 +5387,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5400,10 +5400,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "block_index": 152, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5411,11 +5411,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5424,10 +5424,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", + "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", "block_index": 149, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5435,11 +5435,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600746, + "block_time": 1729602036, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5457,7 +5457,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp` (str, required) - The address to return + + address: `bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p` (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 @@ -5476,10 +5476,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "block_index": 151, - "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", - "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", + "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5487,11 +5487,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600754, + "block_time": 1729602045, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5509,7 +5509,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -5529,10 +5529,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5540,11 +5540,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5553,10 +5553,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5564,11 +5564,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5577,10 +5577,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "block_index": 152, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5588,11 +5588,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5601,10 +5601,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", + "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", "block_index": 149, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5612,11 +5612,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600746, + "block_time": 1729602036, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5634,7 +5634,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp` (str, required) - The address to return + + address: `bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p` (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` @@ -5654,10 +5654,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "block_index": 151, - "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", - "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", + "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5665,11 +5665,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600754, + "block_time": 1729602045, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5687,7 +5687,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5716,9 +5716,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5727,7 +5727,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5737,7 +5737,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -5762,7 +5762,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -5775,9 +5775,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5786,7 +5786,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5796,7 +5796,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -5818,7 +5818,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -5838,19 +5838,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5858,7 +5858,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5873,7 +5873,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -5887,19 +5887,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5907,7 +5907,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5922,7 +5922,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -5944,7 +5944,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address to return + + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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 @@ -5964,19 +5964,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5984,7 +5984,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5999,7 +5999,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -6013,19 +6013,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6033,7 +6033,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6048,7 +6048,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -6070,7 +6070,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -6091,19 +6091,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6111,7 +6111,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6126,7 +6126,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -6140,19 +6140,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6160,7 +6160,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6175,7 +6175,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -6197,7 +6197,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address to return + + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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` @@ -6218,19 +6218,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6238,7 +6238,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6253,7 +6253,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -6267,19 +6267,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6287,7 +6287,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6302,7 +6302,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -6324,7 +6324,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw` (str, required) - The address to return + + address: `bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut` (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 @@ -6343,16 +6343,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -6366,7 +6366,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -6385,14 +6385,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -6407,20 +6407,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", + "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -6435,20 +6435,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729600803, + "block_time": 1729602084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", + "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -6463,20 +6463,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600799, + "block_time": 1729602080, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", + "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -6491,20 +6491,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600795, + "block_time": 1729602075, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -6519,7 +6519,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729600782, + "block_time": 1729602062, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6534,7 +6534,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The issuer or owner to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -6557,8 +6557,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -6566,16 +6566,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": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -6583,16 +6583,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": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -6600,16 +6600,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": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -6617,16 +6617,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": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -6634,8 +6634,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": 1729600649, - "last_issuance_block_time": 1729600666, + "first_issuance_block_time": 1729601940, + "last_issuance_block_time": 1729601956, "supply_normalized": "0.00000000" } ], @@ -6649,7 +6649,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The issuer to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -6672,8 +6672,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -6681,16 +6681,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": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -6698,16 +6698,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": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -6715,16 +6715,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": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -6732,16 +6732,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": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -6749,8 +6749,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": 1729600649, - "last_issuance_block_time": 1729600666, + "first_issuance_block_time": 1729601940, + "last_issuance_block_time": 1729601956, "supply_normalized": "0.00000000" } ], @@ -6764,7 +6764,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The owner to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -6787,8 +6787,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -6796,16 +6796,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": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -6813,16 +6813,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": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -6830,16 +6830,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": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -6847,16 +6847,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": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -6864,8 +6864,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": 1729600649, - "last_issuance_block_time": 1729600666, + "first_issuance_block_time": 1729601940, + "last_issuance_block_time": 1729601956, "supply_normalized": "0.00000000" } ], @@ -6879,7 +6879,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -6898,17 +6898,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", - "block_time": 1729600947, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_time": 1729602219, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", + "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6944,23 +6944,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", - "block_time": 1729600933, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_time": 1729602215, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "supported": true, - "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", + "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "status": "valid" } }, @@ -6968,17 +6968,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 191, - "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", - "block_time": 1729600919, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", + "block_time": 1729602211, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", + "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7014,17 +7014,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", - "block_time": 1729600915, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", + "block_time": 1729602207, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", + "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7032,14 +7032,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7047,7 +7047,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7066,17 +7066,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 185, - "block_hash": "4a06a184078a2111af3df09dc9d57d397867eaf125081feeed37e0babcb42ec2", - "block_time": 1729600895, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "5e44846d5adef2e033681729f97aadd0b7b0103716d315468d14e990e6580b69", + "block_time": 1729602185, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40:1", + "utxos_info": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7121,7 +7121,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -7140,20 +7140,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7178,7 +7178,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7207,9 +7207,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7224,7 +7224,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7250,9 +7250,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7267,7 +7267,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7293,9 +7293,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7310,7 +7310,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7336,9 +7336,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7353,7 +7353,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7388,7 +7388,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The source of the fairminter to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The source of the fairminter to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7406,10 +7406,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "tx_index": 42, "block_index": 155, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7434,7 +7434,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729600782, + "block_time": 1729602062, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7443,10 +7443,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7471,7 +7471,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729600687, + "block_time": 1729601977, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7483,10 +7483,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "tx_index": 18, "block_index": 131, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7511,7 +7511,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729600670, + "block_time": 1729601960, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7523,10 +7523,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "tx_index": 14, "block_index": 130, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7551,7 +7551,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729600666, + "block_time": 1729601956, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7563,10 +7563,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "tx_index": 10, "block_index": 125, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7591,7 +7591,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7613,7 +7613,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address of the mints to return + + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7631,22 +7631,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7655,22 +7655,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", + "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600683, + "block_time": 1729601973, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7679,22 +7679,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", + "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600679, + "block_time": 1729601969, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7703,22 +7703,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", + "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600674, + "block_time": 1729601964, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7727,22 +7727,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9fd58f4965e60f1044c674ce3253a67d37f0d6924d08e6cf1b15b94f8629200f", + "tx_hash": "1b4e9f9ff7be0393355aec7e38bdd23b47bbf42a5a0290bc14c43551890db392", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600653, + "block_time": 1729601944, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7751,22 +7751,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7785,7 +7785,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address of the mints to return + + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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` @@ -7804,22 +7804,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7861,8 +7861,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will make the bet + + feed_address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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) @@ -7930,7 +7930,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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) @@ -7986,7 +7986,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7998,7 +7998,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001012f0620ecc94097bf787349bfda22cb404296e7754d21045f71a924a080ee680100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a2950941e36ff7488a77f215ff66d90b8095322d8e17c9f4e555d3d67cf38574eace02748a4bdfd09bba69bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "0200000000010108ffbd840f67c6edf401c49c9c82438eda1917743609167a889eb63afc727f0e00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2963059221f1b8824ace1e3873dc651f88455364598fab2597e6ccf3f4b9a44c70d4e432039c4399f0909bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8020,8 +8020,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending the payment - + order_match_id: `0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e` (str, required) - The ID of the order match to pay for + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending the payment + + order_match_id: `0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3` (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) @@ -8073,23 +8073,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" }, "name": "btcpay", - "data": "434e5452505254590b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a403fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "data": "434e5452505254590b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd22d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "020000000001010cd6f6f457fb21e2dbc3c01cbfa7779e84b51ed915ae8ef6f60e00af2e69154a00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03b80b000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f00000000000000004b6a497507a46c0bbb5a4833e1b18e560a6ea2f82b138550721c8569194b54dfe12aa2c88d0b7c374e62cf4ef4a48668d68302c40e519b2ce6c03b5b3ce4bc74a7eb1f68ec4cc3a9e33aba48c79f052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101a782f0234bce03c0b11158e191cc0d0433babee0109ae84bdeb3aba252c8675600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03b80b000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1700000000000000004b6a498288789f515d1bb5032dd32111fe168e2433ebcc6950efa1442e193f8f41f5345d61f5b9a258fe6e511a04a5bfad54936e6224751260379cc67d3734eb3e48eda2ecc68ddea1cb2e72c79f052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "status": "valid" } } @@ -8102,7 +8102,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address with the BTC to burn + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -8157,7 +8157,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "quantity": 1000, "overburn": false }, @@ -8167,7 +8167,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": "02000000000101a72f14242480b21632bba94265d64a3b612f941b6f46a46b625d22c4df02e47c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000" + "rawtransaction": "020000000001014ef3d4404221ab9315fb6c5444cf82bb583ecfb084251ef97ca34edbae16c6cb00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000" } } ``` @@ -8177,8 +8177,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09` (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) @@ -8230,21 +8230,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93" + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09" }, "name": "cancel", - "data": "434e54525052545946c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "data": "434e545250525459467630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101f157a333d65416897dcebfd9cc1c61bd315a42ac4b476cc9f0df91677c87993900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a297a834c0ddc1a2cb69dd5d5b3a4dbcf37d77b216cc78f5857fcd9f1c0fae5bef5afe9c77e2e9b8532049bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "020000000001017fe0437e945dcc564c73eb51bee85d7d782dd0eddb133550e6dca9ea2bdfd71300000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2905d0b3d189f0b731bfedd052237bb8b82c81d17f9a2b31225aa9a6769101db8e9094a56d3669432c799bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "status": "valid" } } @@ -8257,7 +8257,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -8312,7 +8312,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8331,7 +8331,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101a3a6fbc1f3b0f09ea9a01e3119309d2030581ba8e65304208b6d27a61dc487fe00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000226a200fc65feec5bfbddc91e68b576f3c9c2111fee426fd9acf4b155aa07ee9eb1f04aabc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d24176d35d15c0c64fd0a2bea51dfbc9d60ca2b26cf261aeb7767013cef1e66200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000226a2018ce351b3a2d666577ed418ef24798859b5f3ef30990199f9c781f87f70a67eaaabc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8351,7 +8351,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: `bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c` (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) @@ -8412,7 +8412,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8436,7 +8436,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": "02000000000101c2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef02000000160014fbceb7810513954604a3136dad2275da3265619dffffffff0200000000000000002c6a2a24df52efb3b67f6f90ecc48a6f2ab9092079082f106ae9340473e7b524317d24f0ed438b09af56d45bafb0540a2701000000160014fbceb7810513954604a3136dad2275da3265619d02000000000000", + "rawtransaction": "0200000000010154660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb02000000160014fb134d3d7db65283c8a6d438f34c982c5f90936fffffffff0200000000000000002c6a2a549b3501ee943fd845cb0c32042fd8b35c7a2feb92ed8865841b0d97db283ba5753f0e78b422acc675deb0540a2701000000160014fb134d3d7db65283c8a6d438f34c982c5f90936f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8462,7 +8462,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -8517,14 +8517,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -8543,7 +8543,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001015a4cdb86cc3604b095e5c9cf0ca45f2a55bcfaae99faa5581256d43be396a4e900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a21d6996394366e74123d83b3f5130d0e9f59db3f675e8bc28db74ae4f633a2ca6e9d6fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d8c4c7ca24ecc925dfff6352da967b9326c03eb1906ab886919bded2abe7645000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a21826287520ae74b4395832fb5f75c8aa1f94f8a58242f3b1a0f9726295a33ecdcfe6fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8564,10 +8564,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -8628,10 +8628,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "transfer_destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "lock": false, "reset": false, @@ -8644,7 +8644,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": "0200000000010171bd23ee4ecbad6270dbb8810e7b0c320710a3ada835f63ab744972cf8d6151400000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff032202000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f0000000000000000236a21c35eb58725aa4bc7ec220cfeccefcfeb76b826ddc8bfa91fdbcf88864e7d4fcc3985b2052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101ce38cdd53573bedc5bb1f948419d3953a9654114eee982a68de762c873b0c36100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff032202000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f170000000000000000236a2196fbac094f71586091ed88706db05cd6050bb5c6283bddbd6ea1812f34408d15f185b2052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8673,9 +8673,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu,bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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` @@ -8732,16 +8732,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", 1 ], [ "MYASSETA", - "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", 2 ] ], @@ -8749,26 +8749,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f80a7623a666dd6367f02aa9a43d4bddcb525cdc9448f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280ac259a46ca7b25183c056dd8cd8af381d44a2f178038fec635c374c266372b6968b0a02a296ddd4ed78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001046601e2fc94b15d43cd1694b794b22d093bf1e481390b53480eeadb7d150a373e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff93e5ca8d8fe6183134e853a534288ef5b3028469940514fce9b163e0411fcc3700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff48cf3f2ea59a29a2616529af6dd6c311cf5bbf354cd30a8fe33be958224da9d700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff63af512919afa2f89e873112d5c9e3dc2213c851d83402a5d21ce1b70861cb3c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03e80300000000000069512102320ace28b1954fd5eaa805b9a093dfc6bda5b56d8b8480439d4e4ed3e89b8b752102fdb2620f570b48a8c24e6f73aa4c261fac0e41244e818533302896e47a490ddf21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121023d0ace28b1954fd5ea8b72d4525a9ae8f55164b94a99cb35fcc54c0d7e29b75c210264edaaa835312ec51478187100d665cb11d2f6018348c1bc1260f3881626215f21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53ae14f316a804000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000000000000", + "rawtransaction": "020000000001049cd344441140c46f917f15ba952bac7f8227a94f3a4282d0fa2476ab222c1a8c00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffbe4a736276a43a4b7abbb7fe913a3c8bc38e7aa16d8a669156061057d292b07800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc648578dee845a752850522212788f7c351bdcacf276d26ae90d11d14e51dfcf00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffee5f3b21ba6dd74da11f4c89159f2f25d0ce6c0d8ac2e88b7ac7379f6664540600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03e80300000000000069512102c3ab41cae66da68f202687d09adb3f7ca89bf217704cae6966149734e6ae84e121023262b4cece3529d5e634e59ad8c971a96047e28befd36c4057219173159a2eac2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee80300000000000069512102ccab41cae66da68f2005f0bd681b7ec7ccd189326465308f09f91dc7677ace8c21031d757cf630f31c1692f68badf3a01919c06dc9e6329dbbcf7569f41f79f5021f2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353ae14f316a804000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8784,7 +8784,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -8842,7 +8842,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8859,7 +8859,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -8873,7 +8873,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "020000000001010cd6becb5b812e053ce82398841af335c3326030852f5700a7ee69bbf438548e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000356a331366e9da62e0dd3f6539b19398a1661537b0beb11865424fe5ea7d272a9109f6212182f63fa0d74a9996dd319ceabae1b03fdb51b8052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d2a317377493a48aba4c05a001333e1d2fa9f4818e2481c011f1d5f5c5a03f5900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000356a33e3b5d6136200359688929a3110401601a0ddcb814d2760f4651a79e959e2b835da038ea7599ab30e3bf782bb04419e73be1ea251b8052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -8899,8 +8899,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address that will be receiving the asset + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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 @@ -8960,8 +8960,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8977,19 +8977,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a7623a666dd6367f02aa9a43d4bddcb525cdc944", + "data": "434e54525052545902000000000000000100000000000003e88038fec635c374c266372b6968b0a02a296ddd4ed7", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101a5a437abfceb2769bd0f0e917d7f3676a34a8afa323a4daaa36de808006d263100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000306a2e8ddaf280f664ff4c0ed800cc42e43c116bc5e2da5d3ebf769ff792738e7e4285f4872d2d19e2ba498729ce55590276b9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d91b95e2af0e759026b39536b8d83d628e9314271eea6860dfa956b7a6b6282900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000306a2e2950d4e1fc0dd540d5f278dec7b04e96a99861303add9ea4a945ba9ee2a2583a20883d365c670414057492c85f9a76b9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "memo": null, "quantity_normalized": "0.00001000" } @@ -9003,8 +9003,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be sending - + destination: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending + + destination: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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 @@ -9058,23 +9058,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a7623a666dd6367f02aa9a43d4bddcb525cdc94407ffff", + "data": "434e545250525459048038fec635c374c266372b6968b0a02a296ddd4ed707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101121eff4d7fe23c2ce07956b290778592f93235555d76b67ce599f5d5a3ae495f00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a2197add0b35ef9f146b1b92c6711f007727850807dce1e6b772da2fabe855df566646fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "020000000001017786d3501ed9ef5b4ca6dc705e8c039f80ccb211135ab9bbc9923e98078534e700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a2184674740b5b0f99d218985f45e23d863809271cb8600aacece0008ea137f7911046fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "flags": 7, "memo": "ffff" } @@ -9088,8 +9088,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: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj` (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` @@ -9142,8 +9142,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "quantity": 1000 }, "name": "dispense", @@ -9152,7 +9152,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "0200000000010175b18150401657641ee43dfb036ef57abc495a36f7dcd26fc467fd3e3b898f0702000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc944ffffffff03e803000000000000160014ef05fe482e497897dec9187c938a3627e18a4a9200000000000000000c6a0a4e0b2c0c8cea4b48785ae3c1082701000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc94402000000000000", + "rawtransaction": "020000000001019e4b2fbf2d349f6c6c57054e5de72e0b4c780ef93523945f88f43aed10db23240200000016001438fec635c374c266372b6968b0a02a296ddd4ed7ffffffff03e803000000000000160014eddb83e7d0005a90f0f03950a23b9675325ea37c00000000000000000c6a0a0ae4e55812233125b6bee3c108270100000016001438fec635c374c266372b6968b0a02a296ddd4ed702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9169,7 +9169,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be issuing the asset + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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: `` @@ -9254,7 +9254,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9285,7 +9285,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001013a2e04e9da414ac6991ea3cdb28646adb691759462c59948ed27b91bcb9b308900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000316a2f17bb6968a82536ec6d57a0823865a21b6601fae19646540989fdb79d042008a3f13e3617ba73d58d6c7d913ace48fd3bb9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "020000000001016a3a6d618c3ead34bc319dc018f0d051586f2e259fa42660f2bc7a6a066a286700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000316a2fdec4b9ede8f883ab4ee822133ca3b693166b1f24bd104d4e823e0a8af0a21ddc301b3b2848e0bdd8a066823ef125503bb9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9318,7 +9318,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address that will be minting the asset + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -9373,13 +9373,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9391,7 +9391,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": "02000000000101b84185f100595d8a2231c365065cd5aabdb9f3ce53694e59e948f042fda9609600000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000166a14f49a5390f81369f8bb2dce5e4e6d9756846e2f0769bf052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101dd111d12df8c39285b8ace3682a283cf4874caaab255e9a14da8804dc497abc200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000166a1443cd9b301bc366950c02348363c7b1ad53163ee269bf052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9409,10 +9409,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: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address from which the assets are attached + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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: `3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63:0` (str, optional) - The utxo to attach the assets to + + destination: `8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9465,8 +9465,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63:0", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9479,12 +9479,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c336363623631303862376531316364326135303233346438353163383133323264636533633964353132333138373965663861326166313932393531616636333a307c5843507c31303030", + "data": "434e5452505254596462637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c386333326135633161353539656564303833623338343033333933376530636563306539363763353663313437393634393765313763343136313239396530653a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106a67fe03efb16d6e309a3e356c20c0420c0ca7be22518c41c7f20e62dfbd9bbe200000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffffb9239ad8ce18977d54bd74df9df75aab9d1d3a91ae1e01acbe728d48b8c3641100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff505475308ab54bb36b0dc3bb7debd5993b3aed59e44cb558407b819980b6792700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff8dd2a5c9e4deb858eb72f2092417cbe00f4129bdf600eb1232ffc1dac9112b7e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff287eaec105fdf0dac03f8e84d953345fa9f6badf2d99c97a0044fca799e2fffd00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0fab5a0c757b882994a2ce55018fcc45f38e7137d0b87b5327ae9e4da221b6f500000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff04e8030000000000006951210254284f4eb2a32f1bae3931e200983dc6904c6c3ec9e68ee571b60451e36e5b3b210335e2ca1a5706cac1222cc9abd3f995bb05cf2270f01ce65c4ed74485d931c40621030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee8030000000000006951210354284f4eb2a32f1bae6531b617dd3dd4c14b7e78cee2d3e423b60316b62c1258210275bc900a060888c92c22caff93afdcb15ec62a63a910a1411b851ed5d635c53a21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121027e284f4eb2a32f1bae3c35b741d63ccbfd3a4f31cfe0d0e0478e3627d51423482102468ea26e656dbbaa1546ffcea19ced8969ff4f05917193207db427e7ef00f4a721030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aec36d22fc06000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106f5a2b62967bd65039d97d29bd3a94877b0b0de59b32025147b5f6c5e8132e7b800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffe1995dc3a8191a0505ef3ac97b883bbb25629eb48b31dbf439592003d1ecc52f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff7e06a3147b917a4999361e47a49460876a4258e7cb7363858b68b76af222324f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffdc8453ed5e287bf6546e839890aea7f94e330af8cf7df3f44e438ee9ee0a8df500000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffedbfb9e4bb42eb01119d8d42ba4a03458f689ee821a27881f1f31f7a229c8d9100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc206e3af5eae8c71f82f37241ca041a4f91a68d1ac2b03ceb422b4ecefe7279100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff04e803000000000000695121034eadd003803ba7735e862367431591400f1d4114c4bc78b3eefe4c78812965822102e71b08bb2f74f0534ce46d7f8231c47833603ff9fe34a0ee80fccae388e1cc112103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee803000000000000695121034eadd003803ba7735ed320310458c5545f5e134293bc2bb5eebb1572c12e71fb2103ee1c05ae697cb30d15f4607b9835842c623a6fb7bd26e2a5dbabc8e7d8e6966a2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee8030000000000006951210264add003803ba7735edb2434545b904d632d7b0dc0bf23b1de88264bf21914622102de7f60cd59198a3b2297554dfb04b01b5b0c5b8e8a43d392b89ff9d1e9d4afda2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aec36d22fc06000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9501,8 +9501,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: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to detach the assets to + + utxo: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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 @@ -9556,8 +9556,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9570,12 +9570,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964326664623933383036303439643064616333333237313465393361336639663563326663623366383861373662366263373339393338303731656532616334613a307c6263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c5843507c31303030", + "data": "434e54525052545964303831623335313938393239383466623064336465633161636366346539396136393831373039623265393762303966626538356466373363393135383063313a307c62637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031add506e93ba9560878795fdf100510018f974082abe588ad8bba1ace3caca4401000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffffc2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef00000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff5e8616e204ea3b6435fd5478bd31a0f2cef73410f4508bf4457b91ed3bb769ae01000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff04e80300000000000069512103de0a2b134f395690841d679f9c6bd78eb23b85e481e87fcddb8de430a3af88a321022240eabbb76de12108b7f1f6710d18320d56a69e7376d35aa598824f5cfbc806210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103de0a2b134f395690844a6dc9cf388bd8b86ad0e0d4eb2b81dd8ff577a1ec8aaf21032607fcb5b262e77109e3b2a33913083c5644accd632ad252a59f931d17f09db8210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103f40a2b134f3956908449388c99649bc1d248e3a884e12bcdbfec8703909dbfbf210313748f82840cd24731d1c495436b7b503e309ea61241e53893fae1786fc2f190210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353ae11780b2701000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589002000002000002000000000000", + "rawtransaction": "02000000000103dce0f921f3ad21ad1b1a53ff971aa8738e7794a49688f396a1a68cb653cd12130100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff54660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb0000000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff8914ffcf77cbcf749ab000a2443eacec67b03c6e0175d3e2b0cdc11f4b2afcc90100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff04e8030000000000006951210272314ec7fdd8cdfa9fe6976c7b2d79bf8b56e42efd164f661960f4aa470038ed21038a81d5ab9bcfde0ca766b2b8c18992734b61ec9242f6ee8e89907725a9b3ac642103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210372314ec7fdd8cdfa9fe6c163792c73bb8f57ec74fe15472e1d61b6ba451569f721039adad1fdcbc2d859e835e0fdc8c09a20132ef8cd5da7b79f819b6872b8e8f13a2103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210258314ec7fdd8cdfa9feec3233e3839f6e22c8c6bfe1f47627f02c4ce74645de22103e9b0b4c8f8a9ea699e5fd38ef8b1a3447b588ea027cfd9ecb9a91147cc8b99792103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53ae11780b270100000016001492b5051f546edf56f17f264039d77d86944357d202000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9630,8 +9630,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -9639,16 +9639,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "owner": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "owner": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "divisible": true, "locked": false, "supply": 100000000000, @@ -9656,16 +9656,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729600791, - "last_issuance_block_time": 1729600791, + "first_issuance_block_time": 1729602071, + "last_issuance_block_time": 1729602071, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -9673,16 +9673,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -9690,16 +9690,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -9707,8 +9707,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" } ], @@ -9736,8 +9736,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -9745,8 +9745,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729600633, - "last_issuance_block_time": 1729600646, + "first_issuance_block_time": 1729601923, + "last_issuance_block_time": 1729601936, "supply_normalized": "100.00000000" } } @@ -9777,7 +9777,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9785,14 +9785,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9800,7 +9800,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9812,13 +9812,13 @@ Returns the asset balances } ``` -### Get Balance By Asset And Address [GET /v2/assets/{asset}/balances/{address}{?verbose}{&show_unconfirmed}] +### Get Balances By Asset And Address [GET /v2/assets/{asset}/balances/{address}{?verbose}{&show_unconfirmed}] -Returns the balance of an address and asset +Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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. @@ -9830,7 +9830,7 @@ Returns the balance of an address and asset { "result": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -9884,9 +9884,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9901,7 +9901,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9927,9 +9927,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9944,7 +9944,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9970,9 +9970,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9987,7 +9987,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10013,9 +10013,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10030,7 +10030,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10056,9 +10056,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10073,7 +10073,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10135,13 +10135,13 @@ Returns the orders of an asset { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10155,7 +10155,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10175,13 +10175,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10195,7 +10195,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10215,13 +10215,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "tx0_index": 49, - "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 50, - "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10235,7 +10235,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10315,20 +10315,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10336,20 +10336,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", + "event": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10357,20 +10357,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10378,20 +10378,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "event": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10403,16 +10403,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10472,12 +10472,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -10489,16 +10489,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "event": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600956, + "block_time": 1729602228, "asset_info": { "divisible": true, "asset_longname": null, @@ -10510,16 +10510,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "divisible": true, "asset_longname": null, @@ -10531,16 +10531,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "divisible": true, "asset_longname": null, @@ -10552,16 +10552,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "asset_info": { "divisible": true, "asset_longname": null, @@ -10601,20 +10601,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10658,14 +10658,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", + "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -10680,20 +10680,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -10708,20 +10708,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -10736,20 +10736,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -10764,7 +10764,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729600633, + "block_time": 1729601923, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10798,10 +10798,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10809,7 +10809,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -10822,10 +10822,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10833,7 +10833,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -10846,10 +10846,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", "block_index": 189, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10857,7 +10857,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600911, + "block_time": 1729602202, "asset_info": { "divisible": true, "asset_longname": null, @@ -10870,10 +10870,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", + "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", "block_index": 157, - "source": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", - "destination": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", + "destination": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10881,7 +10881,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600791, + "block_time": 1729602071, "asset_info": { "divisible": true, "asset_longname": null, @@ -10894,10 +10894,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e", + "tx_hash": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489", "block_index": 156, - "source": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", - "destination": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", + "source": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", + "destination": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10905,7 +10905,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600786, + "block_time": 1729602066, "asset_info": { "divisible": true, "asset_longname": null, @@ -10956,9 +10956,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10967,7 +10967,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10977,7 +10977,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -10993,9 +10993,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", + "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", "block_index": 142, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11004,7 +11004,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11014,7 +11014,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600717, + "block_time": 1729602006, "asset_info": { "divisible": true, "asset_longname": null, @@ -11030,9 +11030,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", + "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", "block_index": 150, - "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", + "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11040,10 +11040,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 0, - "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11051,7 +11051,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600750, + "block_time": 1729602041, "asset_info": { "divisible": true, "asset_longname": null, @@ -11067,18 +11067,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11088,7 +11088,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -11113,7 +11113,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - The address to return + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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` @@ -11126,9 +11126,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11137,7 +11137,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11147,7 +11147,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -11197,7 +11197,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11205,7 +11205,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11214,7 +11214,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11222,7 +11222,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11231,7 +11231,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11239,7 +11239,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11248,7 +11248,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11285,27 +11285,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11320,7 +11320,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -11334,27 +11334,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", + "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", "block_index": 147, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11369,7 +11369,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600737, + "block_time": 1729602028, "asset_info": { "divisible": true, "asset_longname": null, @@ -11383,19 +11383,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11403,7 +11403,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11418,7 +11418,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -11432,19 +11432,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11452,7 +11452,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11467,7 +11467,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -11510,8 +11510,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -11519,8 +11519,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729600799, - "last_issuance_block_time": 1729600799, + "first_issuance_block_time": 1729602080, + "last_issuance_block_time": 1729602080, "supply_normalized": "0.00000000" } ], @@ -11552,10 +11552,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "tx_index": 10, "block_index": 125, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11580,7 +11580,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11620,22 +11620,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", + "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", "tx_index": 13, "block_index": 125, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11644,22 +11644,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "tx_index": 12, "block_index": 124, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11668,22 +11668,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11702,7 +11702,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx` (str, required) - The address of the mints to return + + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (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` @@ -11721,22 +11721,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -11785,9 +11785,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11802,7 +11802,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11828,9 +11828,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11845,7 +11845,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11871,9 +11871,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11888,7 +11888,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11914,9 +11914,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "block_index": 188, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11931,7 +11931,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11957,9 +11957,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11974,7 +11974,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12009,7 +12009,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93` (str, required) - The hash of the transaction that created the order + + order_hash: `7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09` (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. @@ -12021,9 +12021,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12038,7 +12038,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12070,7 +12070,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40` (str, required) - The hash of the transaction that created the order + + order_hash: `0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2` (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 @@ -12097,13 +12097,13 @@ Returns the order matches of an order { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12117,7 +12117,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12137,13 +12137,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12157,7 +12157,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12187,7 +12187,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40` (str, required) - The hash of the transaction that created the order + + order_hash: `0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2` (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 @@ -12206,15 +12206,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "btc_amount": 2000, - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "status": "valid", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "btc_amount_normalized": "0.00002000" } ], @@ -12258,9 +12258,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12278,7 +12278,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729600903, + "block_time": 1729602194, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12304,9 +12304,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "block_index": 188, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12324,7 +12324,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12350,9 +12350,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12370,7 +12370,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12396,9 +12396,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12416,7 +12416,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12442,9 +12442,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12462,7 +12462,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12525,13 +12525,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12548,7 +12548,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12568,13 +12568,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12591,7 +12591,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12611,13 +12611,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "tx0_index": 49, - "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 50, - "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12634,7 +12634,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600834, + "block_time": 1729602113, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12692,13 +12692,13 @@ Returns all the order matches { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12712,7 +12712,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12732,13 +12732,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12752,7 +12752,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12772,13 +12772,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "tx0_index": 49, - "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 50, - "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12792,7 +12792,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12960,66 +12960,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", + "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", "block_index": 121, - "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", + "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729600628, + "block_time": 1729601918, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "5525a4b2fbe66c394a65f4c2793698365672e5fc073693b4900c7e15a5b81615", + "tx_hash": "1d3ad1a09fefd93cfd842d392f108a9ea07b46139667d21bf1217e0e8d148a31", "block_index": 120, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729600624, + "block_time": 1729601914, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b2afd9dd0cc770db309c03dfbf91178206b73bc188f9bc4bcbd40c9e5e522747", + "tx_hash": "555f50a768779c0d5ceb16845a5ea91b5eeafd59cbc9563cb38f704eaa33a5d2", "block_index": 119, - "source": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma", + "source": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729600619, + "block_time": 1729601910, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "1f653e4ae30ba8e397ef6cc128249cce0fa9e5b6dcb257d24e740a2b22223e2c", + "tx_hash": "65d709a2aba05390e14cb46ed39a7a07f84423f10d6660b114679ff31fce6f11", "block_index": 118, - "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729600615, + "block_time": 1729601906, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "5bdfa64b6a4284aab2143f1f7f88c9bd0a90c767c6e467e05f4d6331ecd8a0e1", + "tx_hash": "d9c549fae7b7a5caf16608715bc92a38295e98811bbd0a8d2aef7435697db5d7", "block_index": 117, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729600611, + "block_time": 1729601902, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13064,9 +13064,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13075,7 +13075,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13085,7 +13085,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -13101,9 +13101,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", + "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", "block_index": 142, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13112,7 +13112,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13122,7 +13122,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600717, + "block_time": 1729602006, "asset_info": { "divisible": true, "asset_longname": null, @@ -13138,9 +13138,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", + "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", "block_index": 150, - "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", + "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13148,10 +13148,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 0, - "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13159,7 +13159,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600750, + "block_time": 1729602041, "asset_info": { "divisible": true, "asset_longname": null, @@ -13175,18 +13175,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13196,7 +13196,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -13221,7 +13221,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9` (str, required) - The hash of the dispenser to return + + dispenser_hash: `4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a` (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. @@ -13233,9 +13233,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13244,7 +13244,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13254,7 +13254,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -13276,7 +13276,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9` (str, required) - The hash of the dispenser to return + + dispenser_hash: `4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a` (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 @@ -13296,19 +13296,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13316,7 +13316,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13331,7 +13331,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -13345,19 +13345,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13365,7 +13365,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13380,7 +13380,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -13422,20 +13422,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -13460,7 +13460,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c` (str, required) - The hash of the dividend to return + + dividend_hash: `70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18` (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. @@ -13472,20 +13472,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -13507,7 +13507,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18` (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 @@ -13530,12 +13530,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "tx_index": 41, - "utxo": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "utxo": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "divisible": true, "asset_longname": null, @@ -13547,16 +13547,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "address": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "divisible": true, "asset_longname": null, @@ -13602,27 +13602,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 561, @@ -13631,14 +13631,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -13649,9 +13649,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 560, @@ -13660,9 +13660,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -13672,24 +13672,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -13699,9 +13699,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 558, @@ -13729,15 +13729,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } } ``` @@ -13815,16 +13815,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -13834,9 +13834,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 557, @@ -13846,12 +13846,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -13861,9 +13861,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 554, @@ -13873,39 +13873,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "divisible": true, "asset_longname": null, @@ -13915,36 +13915,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "block_time": 1729600951 + "block_time": 1729602224 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "block_time": 1729600951 + "block_time": 1729602224 } ], "next_cursor": 536, @@ -14000,27 +14000,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14035,7 +14035,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -14049,27 +14049,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", + "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", "block_index": 147, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14084,7 +14084,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600737, + "block_time": 1729602028, "asset_info": { "divisible": true, "asset_longname": null, @@ -14098,19 +14098,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14118,7 +14118,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14133,7 +14133,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -14147,19 +14147,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14167,7 +14167,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14182,7 +14182,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -14224,10 +14224,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14235,7 +14235,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -14248,10 +14248,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14259,11 +14259,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -14272,10 +14272,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14283,7 +14283,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -14296,10 +14296,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14307,11 +14307,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -14320,10 +14320,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14331,11 +14331,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -14373,14 +14373,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -14395,20 +14395,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", + "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -14423,20 +14423,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729600803, + "block_time": 1729602084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", + "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -14451,20 +14451,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600799, + "block_time": 1729602080, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", + "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -14479,20 +14479,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600795, + "block_time": 1729602075, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", + "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "transfer": false, "callable": false, "call_date": 0, @@ -14507,7 +14507,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600791, + "block_time": 1729602071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14522,7 +14522,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52` (str, required) - The hash of the transaction to return + + tx_hash: `60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d` (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. @@ -14534,14 +14534,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -14556,7 +14556,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14588,16 +14588,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -14611,7 +14611,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155` (str, required) - The hash of the transaction to return + + tx_hash: `36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7` (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. @@ -14624,16 +14624,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -14667,9 +14667,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "block_index": 138, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14677,14 +14677,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600700, + "block_time": 1729601990, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", + "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", "block_index": 137, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14692,7 +14692,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600696, + "block_time": 1729601986, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14706,7 +14706,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803` (str, required) - The hash of the transaction to return + + tx_hash: `540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb` (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. @@ -14718,9 +14718,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "block_index": 138, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14728,7 +14728,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600700, + "block_time": 1729601990, "fee_fraction_int_normalized": "0.00000000" } } @@ -14758,10 +14758,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "tx_index": 42, "block_index": 155, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14786,7 +14786,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729600782, + "block_time": 1729602062, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14795,10 +14795,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14823,7 +14823,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729600687, + "block_time": 1729601977, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14835,10 +14835,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "tx_index": 18, "block_index": 131, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14863,7 +14863,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729600670, + "block_time": 1729601960, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14875,10 +14875,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "tx_index": 14, "block_index": 130, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14903,7 +14903,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729600666, + "block_time": 1729601956, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -14915,10 +14915,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "tx_index": 10, "block_index": 125, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14943,7 +14943,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15012,22 +15012,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -15036,22 +15036,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", + "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600683, + "block_time": 1729601973, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -15060,22 +15060,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", + "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600679, + "block_time": 1729601969, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -15084,22 +15084,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", + "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600674, + "block_time": 1729601964, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -15108,22 +15108,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "187826b679691eb2ff6d02b9679bfeca9f1e76abb8b1d0b8c0bc2cfa337245f8", + "tx_hash": "8aab2952776b8e585c7b8c0de38a82736ba4f3b1389a94782a6a9464edacba10", "tx_index": 17, "block_index": 129, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600662, + "block_time": 1729601953, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -15142,7 +15142,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72` (str, required) - The hash of the fairmint to return + + tx_hash: `10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1` (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. @@ -15153,22 +15153,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -15186,7 +15186,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy,bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma` (str, required) - The addresses to search for + + addresses: `bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c,bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4` (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. @@ -15205,8 +15205,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", - "address": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy" + "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", + "address": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c" }, { "vout": 2, @@ -15214,8 +15214,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", - "address": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma" + "txid": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", + "address": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4" } ], "next_cursor": null, @@ -15228,7 +15228,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw` (str, required) - The address to search for + + address: `bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut` (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 @@ -15244,28 +15244,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155" + "tx_hash": "9a55e6d3e0a8444e2506c0165584a0c088cf5c7fd47e14fc83902b53a4a64251" }, { - "tx_hash": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465" + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f" }, { - "tx_hash": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671" + "tx_hash": "fcfd0fc820a5d2c8bfefe898c6057bfda1c3ef32f726d5fcb147e25d7a5a6396" }, { - "tx_hash": "184dd6bb2594bb7e7b2a423ff30889d2b158a92d4eddb5636b4821bea502d080" + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7" }, { - "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" + "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2" }, { - "tx_hash": "ebcfb23c56795fb111ae0af96d7afc0c04d32e1e33a916d4de6298d5694c3acc" + "tx_hash": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6" }, { - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6" + "tx_hash": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf" }, { - "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6" + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" } ], "next_cursor": null, @@ -15278,7 +15278,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw` (str, required) - The address to search for. + + address: `bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt` (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. @@ -15292,7 +15292,7 @@ Get the oldest transaction for an address. { "result": { "block_index": 8, - "tx_hash": "6d129d2a3f91a86fee7a32c934229380ce59e1a886037b66785a5788ceaa68d8" + "tx_hash": "9de1943fcf1147bb5df342d8691b323c13457a25336bb16a008c1940b1a7dd75" } } ``` @@ -15302,7 +15302,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy` (str, required) - The address to search for + + address: `bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c` (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 @@ -15323,7 +15323,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2" + "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654" } ], "next_cursor": null, @@ -15336,7 +15336,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu` (str, required) - Address to get pubkey for. + + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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. @@ -15348,7 +15348,7 @@ Get pubkey for an address. ``` { - "result": "030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e" + "result": "03946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f23" } ``` @@ -15357,7 +15357,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a` (str, required) - The transaction hash + + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (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. @@ -15369,7 +15369,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001013dfdf08ba098a35f8faf45b2e8766aecfe8f87ce1da847fbcf4d258e70c624b60100000000ffffffff03e803000000000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589000000000000000000c6a0a925e752ab5d15d326204dced0827010000001600147126c968f7e1cd9e1335a14c9336b6d74d73a8b802473044022075d5eea6a3e1d76ab724b1c42e7ae768d9b460fb50531f5c092d38338c262729022046631e2cc901af9c712fea6929ed245eb6e7f45822cca0cb0ec29c01322077330121038e94ba4d0049a559568ec0807dd86fd0d6d15fb01e7ee938979cae58f3fd734500000000" + "result": "0200000000010199f235875cfd49f760882fcaa4b278fa0374987369cda7d7b42e789d0854890d0100000000ffffffff03e80300000000000016001492b5051f546edf56f17f264039d77d86944357d200000000000000000c6a0a022a7d05ec02a8bad228dced08270100000016001407c1b21a0d36c635f4040393f57e2dc791018c2202473044022031fe513ea57ee002932b62f19bdfb20d9ad85e8e09a4d9831434f4cd1ef13b8b022025fb71583669e27f6c0d24e883cd5064cd7d4f41ab14fe85ec0b9032a1906149012103ddb31ff5cc13c44a222b3cea61fa6131163a5a06fd8f30f1c38b0fe85b68a2ea00000000" } ``` @@ -15464,27 +15464,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63 }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "quantity": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, "asset_info": { "divisible": true, @@ -15495,22 +15495,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -15520,22 +15520,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 196, - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -15545,30 +15545,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729600969.716605, + "block_time": 1729602242.0374818, "btc_amount": 0, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "destination": "", "fee": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, - "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", + "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -15582,7 +15582,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, @@ -15613,19 +15613,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -15635,7 +15635,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, @@ -15648,7 +15648,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809` (str, required) - The hash of the transaction to return + + tx_hash: `98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c` (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 @@ -15668,27 +15668,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63 }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "quantity": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, "asset_info": { "divisible": true, @@ -15699,22 +15699,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -15724,22 +15724,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 196, - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -15749,30 +15749,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729600969.716605, + "block_time": 1729602242.0374818, "btc_amount": 0, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "destination": "", "fee": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, - "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", + "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -15786,7 +15786,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index d1d5648664..7e5892fec1 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -1566,9 +1566,9 @@ def get_balances_by_addresses( return QueryResult(result, assets_result.next_cursor, assets_result.result_count) -def get_balance_by_address_and_asset(db, address: str, asset: str): +def get_balances_by_address_and_asset(db, address: str, asset: str): """ - Returns the balance of an address and asset + Returns the balances of an address and asset :param str address: The address to return (e.g. $ADDRESS_1) :param str asset: The asset to return (e.g. XCP) """ @@ -1583,13 +1583,13 @@ def get_balance_by_address_and_asset(db, address: str, asset: str): ) -def get_balance_by_asset_and_address(db, asset: str, address: str): +def get_balances_by_asset_and_address(db, asset: str, address: str): """ - Returns the balance of an address and asset + Returns the balances of an address and asset :param str address: The address to return (e.g. $ADDRESS_1) :param str asset: The asset to return (e.g. XCP) """ - return get_balance_by_address_and_asset(db, address, asset) + return get_balances_by_address_and_asset(db, address, asset) def get_bets( diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index 97ea4c55d7..b6e8bb8341 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -47,7 +47,7 @@ def get_routes(): "/v2/addresses/events": queries.get_events_by_addresses, "/v2/addresses/mempool": queries.get_mempool_events_by_addresses, "/v2/addresses/
/balances": queries.get_address_balances, - "/v2/addresses/
/balances/": queries.get_balance_by_address_and_asset, + "/v2/addresses/
/balances/": queries.get_balances_by_address_and_asset, "/v2/addresses/
/credits": queries.get_credits_by_address, "/v2/addresses/
/debits": queries.get_debits_by_address, "/v2/addresses/
/bets": queries.get_bet_by_feed, @@ -98,7 +98,7 @@ def get_routes(): "/v2/assets": queries.get_valid_assets, "/v2/assets/": queries.get_asset, "/v2/assets//balances": queries.get_asset_balances, - "/v2/assets//balances/
": queries.get_balance_by_asset_and_address, + "/v2/assets//balances/
": queries.get_balances_by_asset_and_address, "/v2/assets//orders": queries.get_orders_by_asset, "/v2/assets//matches": queries.get_order_matches_by_asset, "/v2/assets//credits": queries.get_credits_by_asset, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index ba00f0e089..85f770992f 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": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", "difficulty": 545259519, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", - "block_time": 1729600956, - "previous_block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", + "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_time": 1729602228, + "previous_block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", "difficulty": 545259519, - "ledger_hash": "e48b67326c9efd18380dad32fbed87d7fe390d83de7bcb3f6b157e6b5ef956f1", - "txlist_hash": "041fd68016df50126076dfb0a738da62ef83347efd3a672e616dad9ca2e7d200", - "messages_hash": "b7551fd65d852da0d472fe3f7ce12b0a39c92b628d3d9d5299215464355fa1f5", + "ledger_hash": "5e641bd94b5742c5d23a62f7b8dcc9e24c7b488635d3f17823f3db0d54cf58a5", + "txlist_hash": "efe3e0fab00782d7e5df98f7ea91c90785ca938cb58537ed5e943a4a208a2ef9", + "messages_hash": "c10fdcf5d9ed8c8f5999b936c5dc57dda97737990c1e2ac3fc4c841323e8c01a", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "73d56755f43aade9e46a9b5ab5115364522fc5a595690f2b1ad5b984c51e21ce", - "block_time": 1729600951, - "previous_block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", + "block_time": 1729602224, + "previous_block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", "difficulty": 545259519, - "ledger_hash": "dc5a06cfc520a5d57cafae40d5e79dd7a3c17bbc3136daf6ad97733d332be6f6", - "txlist_hash": "2236faa5272fc565cdf8ae0d25cdcc774d5338b06e526427a7783458ceee8176", - "messages_hash": "f204bc1337b1509f81a1b2244859fbdc2552f60c8e1ae5b60cd99f795a1fc604", + "ledger_hash": "9793950b57a496010adc84f7a05d3b70530da75760fff8c15b65e6e42f019045", + "txlist_hash": "69682a702da947c430f207f5bea127bdbcb09f4335e384b47dea9d733a606deb", + "messages_hash": "ba2714ef233bf18d9733f7b97f1a1596c071fc81c71e8246dc3cbdd87bb31c84", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", - "block_time": 1729600947, - "previous_block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_time": 1729602219, + "previous_block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", "difficulty": 545259519, - "ledger_hash": "3a315522b7c252ceb1380e21eb29fc5d72017b4d72cc880b59ae9798537ba933", - "txlist_hash": "e837b2dad7d07a242cbaf531cebcee8ec450f76e549feb61ad16da9b4d51457e", - "messages_hash": "96e9b84c58dbb670f928c5c78c4e418d82c442aba945ae83066e5a711433b078", + "ledger_hash": "2c63fbbc09b4d3cc35ad80faeb9b7b6b8cb4676bcd9b300bcf86c1576fcc8416", + "txlist_hash": "38969dc42c309021c04c5020181b99552b3889af1543c9a435b47a6dee175e78", + "messages_hash": "77e75be3e6fecb2c027ed1dd3f6c7c054c70b1ca6e2f41b72b2a8f7b71b6fb2a", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", - "block_time": 1729600933, - "previous_block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", + "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_time": 1729602215, + "previous_block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", "difficulty": 545259519, - "ledger_hash": "c3111aa657e1a7d5e2c9aad182edaeab7745e4f2a197af20360f741cb5259ad8", - "txlist_hash": "807bcd13ec86e30acb4098fe72a6dc1ccbff59da7659962586d5b43bd85697e7", - "messages_hash": "62cbf318197e5a7cedb01b9d332cafe5dac47201a0abbf2317c30c4de8fed316", + "ledger_hash": "53a652903930bb36aa93e893db14990956b7df3b4f5d7887571dcce7c731964a", + "txlist_hash": "0d4223380ddaa6b1b42296d71e411154a3464763b0c8a52e8fd3bdf729cbeaa5", + "messages_hash": "a80fc8473b7714026af7ac37936d01cc200232a0dd550687aa36f9b52b1bb278", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", "difficulty": 545259519, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", "difficulty": 545259519, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a" + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "object_id": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "block_index": 184, "confirmed": true, - "block_time": 1729600834 + "block_time": 1729602113 }, { "type": "order", - "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, "confirmed": true, - "block_time": 1729600834 + "block_time": 1729602113 }, { "type": "order_match", - "object_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "block_index": 184, "confirmed": true, - "block_time": 1729600834 + "block_time": 1729602113 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "status": "valid", "confirmed": true, - "block_time": 1729600933 + "block_time": 1729602215 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "block_index": 195, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729600956, + "block_time": 1729602228, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "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": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -684,17 +684,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -707,17 +707,17 @@ }, { "tx_index": 61, - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "block_index": 195, - "block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4", - "block_time": 1729600956, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_time": 1729602228, + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b:1", + "utxos_info": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -757,7 +757,7 @@ { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "013700", + "script_sig": "014300", "sequence": 4294967295, "coinbase": true } @@ -765,7 +765,7 @@ "vout": [ { "value": 5000000000, - "script_pub_key": "0014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f" + "script_pub_key": "0014ac259a46ca7b25183c056dd8cd8af381d44a2f17" }, { "value": 0, @@ -776,25 +776,25 @@ "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63", - "tx_id": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63" + "tx_hash": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e", + "tx_id": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e" } } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "4d3d762d1f1a4969446506e4838c7b8de0610fab26b0d3392865ca569c2144fd", + "hash": "808ebf21eb43f3966393d863914f83ac21e0771f465b3f8019f288326d01922a", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -804,20 +804,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e7f2fe586259e52b680ac5b3107efd14f5263868caf70a245966604bba646e8e6a97222f38c9b7acdc187f3460f43" + "script_pub_key": "6a2edba97a08c291984bc2696c4bad0621d2c539ed154f42323db37ff3874edda0307d13d6e7118b61073ee57cc3ac43" }, { "value": 4999955000, - "script_pub_key": "0014ef05fe482e497897dec9187c938a3627e18a4a92" + "script_pub_key": "0014eddb83e7d0005a90f0f03950a23b9675325ea37c" } ], "vtxinwit": [ - "304402200a3ddf7e170e5635497621716217a6bb392a26d4de83178f59d1620fc285890b02203cc6af7613eb8252fb5914b5cc25e70d4863e67f46eb0ad7b7d985b2e351831d01", - "023f1326cd06078ea5f8d19f55259ac8c05bcd39e6d7b694ddaa375b4e68ff74b2" + "3044022066154309fabb70c77ce0733c25808f035de015e692f0d94e42b7a7d446d56a2e02200e2d82f11584977cfda5e611503ebd3e5f436872db8aed823e263c2f04cdc67d01", + "03ab0c4957149f74cffa275ca102e3ed301502bcd2086ca6a7e5283755c86100e7" ], "lock_time": 0, - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", - "tx_id": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809" + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_id": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c" }, "unpacked_data": { "message_type": "enhanced_send", @@ -825,7 +825,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -852,17 +852,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -877,17 +877,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", - "block_time": 1729600965, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_time": 1729602237, + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -906,12 +906,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 561, @@ -920,14 +920,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -938,9 +938,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 560, @@ -949,9 +949,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -961,24 +961,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -988,9 +988,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 558, @@ -998,14 +998,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "msg_index": 1, "quantity": 1500000000, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "status": "valid", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1015,9 +1015,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 557, @@ -1030,12 +1030,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 561, @@ -1044,14 +1044,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1062,9 +1062,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 560, @@ -1073,9 +1073,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -1085,24 +1085,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1112,9 +1112,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 558, @@ -1122,14 +1122,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "msg_index": 1, "quantity": 1500000000, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "status": "valid", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1139,9 +1139,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 557, @@ -1151,10 +1151,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1162,7 +1162,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1175,10 +1175,10 @@ }, { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1186,11 +1186,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1206,27 +1206,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1241,7 +1241,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1262,16 +1262,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1281,9 +1281,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 557, @@ -1293,12 +1293,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1308,9 +1308,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 554, @@ -1320,24 +1320,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": null, @@ -1349,16 +1349,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1368,9 +1368,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 557, @@ -1380,12 +1380,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1395,9 +1395,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 554, @@ -1407,24 +1407,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": null, @@ -1437,7 +1437,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1447,7 +1447,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1458,7 +1458,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1468,7 +1468,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1479,7 +1479,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1489,7 +1489,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1500,7 +1500,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1510,7 +1510,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1521,7 +1521,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1531,7 +1531,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1545,17 +1545,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", - "block_time": 1729600947, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_time": 1729602219, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", + "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1591,23 +1591,23 @@ }, { "tx_index": 58, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", - "block_time": 1729600933, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_time": 1729602215, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "supported": true, - "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", + "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "status": "valid" } }, @@ -1615,17 +1615,17 @@ }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 191, - "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", - "block_time": 1729600919, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", + "block_time": 1729602211, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", + "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1661,17 +1661,17 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", - "block_time": 1729600915, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", + "block_time": 1729602207, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", + "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1679,14 +1679,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -1694,7 +1694,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1713,25 +1713,25 @@ }, { "tx_index": 53, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_hash": "2faaacaebe28aa08cb56362cfd203652620ca3c6224b26f4b40655a8e3f0f088", - "block_time": 1729600903, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "68661f1299e623ecf2ed1209495013b7f01bab0631c0a658d57d11700e354d5e", + "block_time": 1729602194, + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "btc_amount": 2000, "fee": 10000, - "data": "0b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a406c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "data": "0b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd28dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "supported": true, - "utxos_info": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175:0", + "utxos_info": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "status": "valid" } }, @@ -1760,11 +1760,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "open", - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1788,24 +1788,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "block_index": 193, - "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729600947, + "block_time": 1729602219, "asset_info": { "divisible": true, "asset_longname": null, @@ -1815,25 +1815,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", "block_index": 193, - "block_time": 1729600947, + "block_time": 1729602219, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, - "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", + "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1865,40 +1865,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "tx_index": 58, - "block_time": 1729600933 + "block_time": 1729602215 }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729600933, + "block_time": 1729602215, "asset_info": { "divisible": true, "asset_longname": null, @@ -1908,9 +1908,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 } ], "next_cursor": 520, @@ -1919,17 +1919,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "quantity": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, "asset_info": { "divisible": true, @@ -1940,22 +1940,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1965,22 +1965,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 196, - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -1990,30 +1990,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729600969.716605, + "block_time": 1729602242.0374818, "btc_amount": 0, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "destination": "", "fee": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, - "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", + "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -2027,7 +2027,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, @@ -2036,7 +2036,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2044,14 +2044,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2059,14 +2059,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2081,7 +2081,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2089,7 +2089,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2102,7 +2102,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2124,16 +2124,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "asset_info": { "divisible": true, "asset_longname": null, @@ -2145,16 +2145,16 @@ }, { "block_index": 184, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "event": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "asset_info": { "divisible": true, "asset_longname": null, @@ -2166,20 +2166,20 @@ }, { "block_index": 161, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "event": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2187,20 +2187,20 @@ }, { "block_index": 158, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", + "event": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600795, + "block_time": 1729602075, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2212,16 +2212,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "event": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "tx_index": 39, - "utxo": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", - "utxo_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "utxo": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "utxo_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "confirmed": true, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2235,16 +2235,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "asset_info": { "divisible": true, "asset_longname": null, @@ -2256,16 +2256,16 @@ }, { "block_index": 191, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600919, + "block_time": 1729602211, "asset_info": { "divisible": true, "asset_longname": null, @@ -2277,16 +2277,16 @@ }, { "block_index": 190, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -2298,20 +2298,20 @@ }, { "block_index": 190, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2319,16 +2319,16 @@ }, { "block_index": 185, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "event": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600895, + "block_time": 1729602185, "asset_info": { "divisible": true, "asset_longname": null, @@ -2351,9 +2351,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", + "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", "block_index": 137, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2361,7 +2361,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600696, + "block_time": 1729601986, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2372,14 +2372,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "5541ca001c9c70e380ae489ca063a58d4b0419d994859428514425b4496aa43c", + "tx_hash": "c517af74238fda6b2de028daa66be74f42674351f2feffb4031b31e29c04b838", "block_index": 112, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729600591, + "block_time": 1729601881, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2391,10 +2391,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2402,7 +2402,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -2415,10 +2415,10 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2426,11 +2426,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2439,10 +2439,10 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2450,11 +2450,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2463,10 +2463,10 @@ }, { "tx_index": 39, - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "block_index": 152, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2474,11 +2474,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2487,10 +2487,10 @@ }, { "tx_index": 36, - "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", + "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", "block_index": 149, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2498,11 +2498,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600746, + "block_time": 1729602036, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2517,10 +2517,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "block_index": 151, - "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", - "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", + "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2528,11 +2528,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600754, + "block_time": 1729602045, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2547,10 +2547,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2558,11 +2558,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2571,10 +2571,10 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2582,11 +2582,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2595,10 +2595,10 @@ }, { "tx_index": 39, - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "block_index": 152, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2606,11 +2606,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2619,10 +2619,10 @@ }, { "tx_index": 36, - "tx_hash": "79f16bec4cd23fc9fc1d1bb07c00a17b0bc11af5e6e7d1775b2633cc892649b5", + "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", "block_index": 149, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671:1", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2630,11 +2630,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600746, + "block_time": 1729602036, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2649,10 +2649,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "block_index": 151, - "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", - "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", + "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2660,11 +2660,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600754, + "block_time": 1729602045, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -2679,9 +2679,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2690,7 +2690,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2700,7 +2700,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -2721,9 +2721,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2732,7 +2732,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2742,7 +2742,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -2762,19 +2762,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2782,7 +2782,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2797,7 +2797,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -2811,19 +2811,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2831,7 +2831,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2846,7 +2846,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -2866,19 +2866,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2886,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2901,7 +2901,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -2915,19 +2915,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2935,7 +2935,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2950,7 +2950,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -2970,19 +2970,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2990,7 +2990,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3005,7 +3005,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -3019,19 +3019,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3039,7 +3039,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3054,7 +3054,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -3074,19 +3074,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3094,7 +3094,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3109,7 +3109,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -3123,19 +3123,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3143,7 +3143,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3158,7 +3158,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -3177,16 +3177,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -3197,14 +3197,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -3219,20 +3219,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", + "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -3247,20 +3247,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729600803, + "block_time": 1729602084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", + "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -3275,20 +3275,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600799, + "block_time": 1729602080, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", + "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -3303,20 +3303,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600795, + "block_time": 1729602075, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -3331,7 +3331,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729600782, + "block_time": 1729602062, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3345,8 +3345,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -3354,16 +3354,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -3371,16 +3371,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -3388,16 +3388,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -3405,16 +3405,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -3422,8 +3422,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729600649, - "last_issuance_block_time": 1729600666, + "first_issuance_block_time": 1729601940, + "last_issuance_block_time": 1729601956, "supply_normalized": "0.00000000" } ], @@ -3436,8 +3436,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -3445,16 +3445,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -3462,16 +3462,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -3479,16 +3479,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -3496,16 +3496,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -3513,8 +3513,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729600649, - "last_issuance_block_time": 1729600666, + "first_issuance_block_time": 1729601940, + "last_issuance_block_time": 1729601956, "supply_normalized": "0.00000000" } ], @@ -3527,8 +3527,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -3536,16 +3536,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -3553,16 +3553,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -3570,16 +3570,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -3587,16 +3587,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -3604,8 +3604,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729600649, - "last_issuance_block_time": 1729600666, + "first_issuance_block_time": 1729601940, + "last_issuance_block_time": 1729601956, "supply_normalized": "0.00000000" } ], @@ -3616,17 +3616,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_hash": "185d9266bfa668e6a6a0549742ec3b52055505d71c3f78dcffe8e6e2e26126f3", - "block_time": 1729600947, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_time": 1729602219, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93:1", + "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3662,23 +3662,23 @@ }, { "tx_index": 58, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_hash": "68e2110a5b23270cb4bb4d01aa534294fc3618e720024d417f38c65af81597d6", - "block_time": 1729600933, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_time": 1729602215, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "supported": true, - "utxos_info": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91:1", + "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "status": "valid" } }, @@ -3686,17 +3686,17 @@ }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 191, - "block_hash": "62ccbda73109570756d1d986cf401bf471f99c0ccf56a934f7eac952641bfd53", - "block_time": 1729600919, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", + "block_time": 1729602211, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0:1", + "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3732,17 +3732,17 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "block_hash": "2199e4626a35dbc1db757531b3ef88d27a1974cddc0ea407a6a02976e4e9389f", - "block_time": 1729600915, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", + "block_time": 1729602207, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7623a666dd6367f02aa9a43d4bddcb525cdc94480a4017fe1b98d65a2cda903172680e839f76ade5a80ef05fe482e497897dec9187c938a3627e18a4a92400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a:0", + "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3750,14 +3750,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -3765,7 +3765,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3784,17 +3784,17 @@ }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 185, - "block_hash": "4a06a184078a2111af3df09dc9d57d397867eaf125081feeed37e0babcb42ec2", - "block_time": 1729600895, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "block_hash": "5e44846d5adef2e033681729f97aadd0b7b0103716d315468d14e990e6580b69", + "block_time": 1729602185, + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40:1", + "utxos_info": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3836,20 +3836,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -3871,9 +3871,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3888,7 +3888,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3914,9 +3914,9 @@ }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3931,7 +3931,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3957,9 +3957,9 @@ }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3974,7 +3974,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4000,9 +4000,9 @@ }, { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4017,7 +4017,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4048,10 +4048,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "tx_index": 42, "block_index": 155, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4076,7 +4076,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729600782, + "block_time": 1729602062, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4085,10 +4085,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4113,7 +4113,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729600687, + "block_time": 1729601977, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4125,10 +4125,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "tx_index": 18, "block_index": 131, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4153,7 +4153,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729600670, + "block_time": 1729601960, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4165,10 +4165,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "tx_index": 14, "block_index": 130, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4193,7 +4193,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729600666, + "block_time": 1729601956, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4205,10 +4205,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "tx_index": 10, "block_index": 125, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4233,7 +4233,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4251,22 +4251,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4275,22 +4275,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", + "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600683, + "block_time": 1729601973, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4299,22 +4299,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", + "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600679, + "block_time": 1729601969, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4323,22 +4323,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", + "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600674, + "block_time": 1729601964, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4347,22 +4347,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9fd58f4965e60f1044c674ce3253a67d37f0d6924d08e6cf1b15b94f8629200f", + "tx_hash": "1b4e9f9ff7be0393355aec7e38bdd23b47bbf42a5a0290bc14c43551890db392", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600653, + "block_time": 1729601944, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4371,22 +4371,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4401,22 +4401,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4434,7 +4434,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4446,7 +4446,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001012f0620ecc94097bf787349bfda22cb404296e7754d21045f71a924a080ee680100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a2950941e36ff7488a77f215ff66d90b8095322d8e17c9f4e555d3d67cf38574eace02748a4bdfd09bba69bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "0200000000010108ffbd840f67c6edf401c49c9c82438eda1917743609167a889eb63afc727f0e00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2963059221f1b8824ace1e3873dc651f88455364598fab2597e6ccf3f4b9a44c70d4e432039c4399f0909bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4464,23 +4464,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" }, "name": "btcpay", - "data": "434e5452505254590b0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a403fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "data": "434e5452505254590b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd22d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "020000000001010cd6f6f457fb21e2dbc3c01cbfa7779e84b51ed915ae8ef6f60e00af2e69154a00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03b80b000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f00000000000000004b6a497507a46c0bbb5a4833e1b18e560a6ea2f82b138550721c8569194b54dfe12aa2c88d0b7c374e62cf4ef4a48668d68302c40e519b2ce6c03b5b3ce4bc74a7eb1f68ec4cc3a9e33aba48c79f052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101a782f0234bce03c0b11158e191cc0d0433babee0109ae84bdeb3aba252c8675600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03b80b000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1700000000000000004b6a498288789f515d1bb5032dd32111fe168e2433ebcc6950efa1442e193f8f41f5345d61f5b9a258fe6e511a04a5bfad54936e6224751260379cc67d3734eb3e48eda2ecc68ddea1cb2e72c79f052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "status": "valid" } } @@ -4489,7 +4489,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "quantity": 1000, "overburn": false }, @@ -4499,27 +4499,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "02000000000101a72f14242480b21632bba94265d64a3b612f941b6f46a46b625d22c4df02e47c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000" + "rawtransaction": "020000000001014ef3d4404221ab9315fb6c5444cf82bb583ecfb084251ef97ca34edbae16c6cb00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93" + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09" }, "name": "cancel", - "data": "434e54525052545946c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "data": "434e545250525459467630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101f157a333d65416897dcebfd9cc1c61bd315a42ac4b476cc9f0df91677c87993900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0200000000000000002b6a297a834c0ddc1a2cb69dd5d5b3a4dbcf37d77b216cc78f5857fcd9f1c0fae5bef5afe9c77e2e9b8532049bba052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "020000000001017fe0437e945dcc564c73eb51bee85d7d782dd0eddb133550e6dca9ea2bdfd71300000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2905d0b3d189f0b731bfedd052237bb8b82c81d17f9a2b31225aa9a6769101db8e9094a56d3669432c799bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "status": "valid" } } @@ -4528,7 +4528,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4547,7 +4547,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101a3a6fbc1f3b0f09ea9a01e3119309d2030581ba8e65304208b6d27a61dc487fe00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000226a200fc65feec5bfbddc91e68b576f3c9c2111fee426fd9acf4b155aa07ee9eb1f04aabc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d24176d35d15c0c64fd0a2bea51dfbc9d60ca2b26cf261aeb7767013cef1e66200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000226a2018ce351b3a2d666577ed418ef24798859b5f3ef30990199f9c781f87f70a67eaaabc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4563,7 +4563,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4587,7 +4587,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "02000000000101c2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef02000000160014fbceb7810513954604a3136dad2275da3265619dffffffff0200000000000000002c6a2a24df52efb3b67f6f90ecc48a6f2ab9092079082f106ae9340473e7b524317d24f0ed438b09af56d45bafb0540a2701000000160014fbceb7810513954604a3136dad2275da3265619d02000000000000", + "rawtransaction": "0200000000010154660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb02000000160014fb134d3d7db65283c8a6d438f34c982c5f90936fffffffff0200000000000000002c6a2a549b3501ee943fd845cb0c32042fd8b35c7a2feb92ed8865841b0d97db283ba5753f0e78b422acc675deb0540a2701000000160014fb134d3d7db65283c8a6d438f34c982c5f90936f02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4609,14 +4609,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4635,7 +4635,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001015a4cdb86cc3604b095e5c9cf0ca45f2a55bcfaae99faa5581256d43be396a4e900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a21d6996394366e74123d83b3f5130d0e9f59db3f675e8bc28db74ae4f633a2ca6e9d6fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d8c4c7ca24ecc925dfff6352da967b9326c03eb1906ab886919bded2abe7645000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a21826287520ae74b4395832fb5f75c8aa1f94f8a58242f3b1a0f9726295a33ecdcfe6fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4652,10 +4652,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "transfer_destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "lock": false, "reset": false, @@ -4668,7 +4668,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "0200000000010171bd23ee4ecbad6270dbb8810e7b0c320710a3ada835f63ab744972cf8d6151400000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff032202000000000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f0000000000000000236a21c35eb58725aa4bc7ec220cfeccefcfeb76b826ddc8bfa91fdbcf88864e7d4fcc3985b2052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101ce38cdd53573bedc5bb1f948419d3953a9654114eee982a68de762c873b0c36100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff032202000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f170000000000000000236a2196fbac094f71586091ed88706db05cd6050bb5c6283bddbd6ea1812f34408d15f185b2052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4693,16 +4693,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", 1 ], [ "MYASSETA", - "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", 2 ] ], @@ -4710,26 +4710,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f80a7623a666dd6367f02aa9a43d4bddcb525cdc9448f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280ac259a46ca7b25183c056dd8cd8af381d44a2f178038fec635c374c266372b6968b0a02a296ddd4ed78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001046601e2fc94b15d43cd1694b794b22d093bf1e481390b53480eeadb7d150a373e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff93e5ca8d8fe6183134e853a534288ef5b3028469940514fce9b163e0411fcc3700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff48cf3f2ea59a29a2616529af6dd6c311cf5bbf354cd30a8fe33be958224da9d700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff63af512919afa2f89e873112d5c9e3dc2213c851d83402a5d21ce1b70861cb3c00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff03e80300000000000069512102320ace28b1954fd5eaa805b9a093dfc6bda5b56d8b8480439d4e4ed3e89b8b752102fdb2620f570b48a8c24e6f73aa4c261fac0e41244e818533302896e47a490ddf21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121023d0ace28b1954fd5ea8b72d4525a9ae8f55164b94a99cb35fcc54c0d7e29b75c210264edaaa835312ec51478187100d665cb11d2f6018348c1bc1260f3881626215f21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53ae14f316a804000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000000000000", + "rawtransaction": "020000000001049cd344441140c46f917f15ba952bac7f8227a94f3a4282d0fa2476ab222c1a8c00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffbe4a736276a43a4b7abbb7fe913a3c8bc38e7aa16d8a669156061057d292b07800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc648578dee845a752850522212788f7c351bdcacf276d26ae90d11d14e51dfcf00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffee5f3b21ba6dd74da11f4c89159f2f25d0ce6c0d8ac2e88b7ac7379f6664540600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03e80300000000000069512102c3ab41cae66da68f202687d09adb3f7ca89bf217704cae6966149734e6ae84e121023262b4cece3529d5e634e59ad8c971a96047e28befd36c4057219173159a2eac2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee80300000000000069512102ccab41cae66da68f2005f0bd681b7ec7ccd189326465308f09f91dc7677ace8c21031d757cf630f31c1692f68badf3a01919c06dc9e6329dbbcf7569f41f79f5021f2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353ae14f316a804000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4741,7 +4741,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4758,7 +4758,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4772,7 +4772,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "020000000001010cd6becb5b812e053ce82398841af335c3326030852f5700a7ee69bbf438548e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000356a331366e9da62e0dd3f6539b19398a1661537b0beb11865424fe5ea7d272a9109f6212182f63fa0d74a9996dd319ceabae1b03fdb51b8052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d2a317377493a48aba4c05a001333e1d2fa9f4818e2481c011f1d5f5c5a03f5900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000356a33e3b5d6136200359688929a3110401601a0ddcb814d2760f4651a79e959e2b835da038ea7599ab30e3bf782bb04419e73be1ea251b8052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4794,8 +4794,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4811,19 +4811,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a7623a666dd6367f02aa9a43d4bddcb525cdc944", + "data": "434e54525052545902000000000000000100000000000003e88038fec635c374c266372b6968b0a02a296ddd4ed7", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101a5a437abfceb2769bd0f0e917d7f3676a34a8afa323a4daaa36de808006d263100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000306a2e8ddaf280f664ff4c0ed800cc42e43c116bc5e2da5d3ebf769ff792738e7e4285f4872d2d19e2ba498729ce55590276b9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101d91b95e2af0e759026b39536b8d83d628e9314271eea6860dfa956b7a6b6282900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000306a2e2950d4e1fc0dd540d5f278dec7b04e96a99861303add9ea4a945ba9ee2a2583a20883d365c670414057492c85f9a76b9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "memo": null, "quantity_normalized": "0.00001000" } @@ -4833,23 +4833,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a7623a666dd6367f02aa9a43d4bddcb525cdc94407ffff", + "data": "434e545250525459048038fec635c374c266372b6968b0a02a296ddd4ed707ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101121eff4d7fe23c2ce07956b290778592f93235555d76b67ce599f5d5a3ae495f00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000236a2197add0b35ef9f146b1b92c6711f007727850807dce1e6b772da2fabe855df566646fbc052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "020000000001017786d3501ed9ef5b4ca6dc705e8c039f80ccb211135ab9bbc9923e98078534e700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a2184674740b5b0f99d218985f45e23d863809271cb8600aacece0008ea137f7911046fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "flags": 7, "memo": "ffff" } @@ -4859,8 +4859,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "quantity": 1000 }, "name": "dispense", @@ -4869,7 +4869,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "0200000000010175b18150401657641ee43dfb036ef57abc495a36f7dcd26fc467fd3e3b898f0702000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc944ffffffff03e803000000000000160014ef05fe482e497897dec9187c938a3627e18a4a9200000000000000000c6a0a4e0b2c0c8cea4b48785ae3c1082701000000160014a7623a666dd6367f02aa9a43d4bddcb525cdc94402000000000000", + "rawtransaction": "020000000001019e4b2fbf2d349f6c6c57054e5de72e0b4c780ef93523945f88f43aed10db23240200000016001438fec635c374c266372b6968b0a02a296ddd4ed7ffffffff03e803000000000000160014eddb83e7d0005a90f0f03950a23b9675325ea37c00000000000000000c6a0a0ae4e55812233125b6bee3c108270100000016001438fec635c374c266372b6968b0a02a296ddd4ed702000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4882,7 +4882,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4913,7 +4913,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001013a2e04e9da414ac6991ea3cdb28646adb691759462c59948ed27b91bcb9b308900000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000316a2f17bb6968a82536ec6d57a0823865a21b6601fae19646540989fdb79d042008a3f13e3617ba73d58d6c7d913ace48fd3bb9052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "020000000001016a3a6d618c3ead34bc319dc018f0d051586f2e259fa42660f2bc7a6a066a286700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000316a2fdec4b9ede8f883ab4ee822133ca3b693166b1f24bd104d4e823e0a8af0a21ddc301b3b2848e0bdd8a066823ef125503bb9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -4942,13 +4942,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -4960,7 +4960,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101b84185f100595d8a2231c365065cd5aabdb9f3ce53694e59e948f042fda9609600000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff020000000000000000166a14f49a5390f81369f8bb2dce5e4e6d9756846e2f0769bf052a01000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000000000000", + "rawtransaction": "02000000000101dd111d12df8c39285b8ace3682a283cf4874caaab255e9a14da8804dc497abc200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000166a1443cd9b301bc366950c02348363c7b1ad53163ee269bf052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -4974,8 +4974,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "3ccb6108b7e11cd2a50234d851c81322dce3c9d51231879ef8a2af192951af63:0", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4988,12 +4988,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c336363623631303862376531316364326135303233346438353163383133323264636533633964353132333138373965663861326166313932393531616636333a307c5843507c31303030", + "data": "434e5452505254596462637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c386333326135633161353539656564303833623338343033333933376530636563306539363763353663313437393634393765313763343136313239396530653a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106a67fe03efb16d6e309a3e356c20c0420c0ca7be22518c41c7f20e62dfbd9bbe200000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffffb9239ad8ce18977d54bd74df9df75aab9d1d3a91ae1e01acbe728d48b8c3641100000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff505475308ab54bb36b0dc3bb7debd5993b3aed59e44cb558407b819980b6792700000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff8dd2a5c9e4deb858eb72f2092417cbe00f4129bdf600eb1232ffc1dac9112b7e00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff287eaec105fdf0dac03f8e84d953345fa9f6badf2d99c97a0044fca799e2fffd00000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff0fab5a0c757b882994a2ce55018fcc45f38e7137d0b87b5327ae9e4da221b6f500000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995fffffffff04e8030000000000006951210254284f4eb2a32f1bae3931e200983dc6904c6c3ec9e68ee571b60451e36e5b3b210335e2ca1a5706cac1222cc9abd3f995bb05cf2270f01ce65c4ed74485d931c40621030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee8030000000000006951210354284f4eb2a32f1bae6531b617dd3dd4c14b7e78cee2d3e423b60316b62c1258210275bc900a060888c92c22caff93afdcb15ec62a63a910a1411b851ed5d635c53a21030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aee803000000000000695121027e284f4eb2a32f1bae3c35b741d63ccbfd3a4f31cfe0d0e0478e3627d51423482102468ea26e656dbbaa1546ffcea19ced8969ff4f05917193207db427e7ef00f4a721030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e53aec36d22fc06000000160014a5210f6a74d1d4cd08d0fdd6ab02de96b23c995f02000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106f5a2b62967bd65039d97d29bd3a94877b0b0de59b32025147b5f6c5e8132e7b800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffe1995dc3a8191a0505ef3ac97b883bbb25629eb48b31dbf439592003d1ecc52f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff7e06a3147b917a4999361e47a49460876a4258e7cb7363858b68b76af222324f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffdc8453ed5e287bf6546e839890aea7f94e330af8cf7df3f44e438ee9ee0a8df500000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffedbfb9e4bb42eb01119d8d42ba4a03458f689ee821a27881f1f31f7a229c8d9100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc206e3af5eae8c71f82f37241ca041a4f91a68d1ac2b03ceb422b4ecefe7279100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff04e803000000000000695121034eadd003803ba7735e862367431591400f1d4114c4bc78b3eefe4c78812965822102e71b08bb2f74f0534ce46d7f8231c47833603ff9fe34a0ee80fccae388e1cc112103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee803000000000000695121034eadd003803ba7735ed320310458c5545f5e134293bc2bb5eebb1572c12e71fb2103ee1c05ae697cb30d15f4607b9835842c623a6fb7bd26e2a5dbabc8e7d8e6966a2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee8030000000000006951210264add003803ba7735edb2434545b904d632d7b0dc0bf23b1de88264bf21914622102de7f60cd59198a3b2297554dfb04b01b5b0c5b8e8a43d392b89ff9d1e9d4afda2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aec36d22fc06000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5006,8 +5006,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5020,12 +5020,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964326664623933383036303439643064616333333237313465393361336639663563326663623366383861373662366263373339393338303731656532616334613a307c6263727431713535737337366e3536383276367a78736c6874326b716b376a3665726578326c306d75616d757c5843507c31303030", + "data": "434e54525052545964303831623335313938393239383466623064336465633161636366346539396136393831373039623265393762303966626538356466373363393135383063313a307c62637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001031add506e93ba9560878795fdf100510018f974082abe588ad8bba1ace3caca4401000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffffc2974c07780cdfc0c65a9f1ba2610e622ad12a119661e856955320f025ca93ef00000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff5e8616e204ea3b6435fd5478bd31a0f2cef73410f4508bf4457b91ed3bb769ae01000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c5890ffffffff04e80300000000000069512103de0a2b134f395690841d679f9c6bd78eb23b85e481e87fcddb8de430a3af88a321022240eabbb76de12108b7f1f6710d18320d56a69e7376d35aa598824f5cfbc806210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103de0a2b134f395690844a6dc9cf388bd8b86ad0e0d4eb2b81dd8ff577a1ec8aaf21032607fcb5b262e77109e3b2a33913083c5644accd632ad252a59f931d17f09db8210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353aee80300000000000069512103f40a2b134f3956908449388c99649bc1d248e3a884e12bcdbfec8703909dbfbf210313748f82840cd24731d1c495436b7b503e309ea61241e53893fae1786fc2f190210217273aba39f7b41e2d8edaa3cd6374af5635ea70b4f4f25705c59fdcb550c34353ae11780b2701000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589002000002000002000000000000", + "rawtransaction": "02000000000103dce0f921f3ad21ad1b1a53ff971aa8738e7794a49688f396a1a68cb653cd12130100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff54660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb0000000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff8914ffcf77cbcf749ab000a2443eacec67b03c6e0175d3e2b0cdc11f4b2afcc90100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff04e8030000000000006951210272314ec7fdd8cdfa9fe6976c7b2d79bf8b56e42efd164f661960f4aa470038ed21038a81d5ab9bcfde0ca766b2b8c18992734b61ec9242f6ee8e89907725a9b3ac642103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210372314ec7fdd8cdfa9fe6c163792c73bb8f57ec74fe15472e1d61b6ba451569f721039adad1fdcbc2d859e835e0fdc8c09a20132ef8cd5da7b79f819b6872b8e8f13a2103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210258314ec7fdd8cdfa9feec3233e3839f6e22c8c6bfe1f47627f02c4ce74645de22103e9b0b4c8f8a9ea699e5fd38ef8b1a3447b588ea027cfd9ecb9a91147cc8b99792103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53ae11780b270100000016001492b5051f546edf56f17f264039d77d86944357d202000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5041,8 +5041,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -5050,16 +5050,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729600795, - "last_issuance_block_time": 1729600803, + "first_issuance_block_time": 1729602075, + "last_issuance_block_time": 1729602084, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "owner": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "owner": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "divisible": true, "locked": false, "supply": 100000000000, @@ -5067,16 +5067,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729600791, - "last_issuance_block_time": 1729600791, + "first_issuance_block_time": 1729602071, + "last_issuance_block_time": 1729602071, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 100000000000, @@ -5084,16 +5084,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729600742, - "last_issuance_block_time": 1729600742, + "first_issuance_block_time": 1729602032, + "last_issuance_block_time": 1729602032, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 40, @@ -5101,16 +5101,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729600687, - "last_issuance_block_time": 1729600691, + "first_issuance_block_time": 1729601977, + "last_issuance_block_time": 1729601981, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 19, @@ -5118,8 +5118,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729600670, - "last_issuance_block_time": 1729600683, + "first_issuance_block_time": 1729601960, + "last_issuance_block_time": 1729601973, "supply_normalized": "0.00000019" } ], @@ -5131,8 +5131,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 10000000000, @@ -5140,15 +5140,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729600633, - "last_issuance_block_time": 1729600646, + "first_issuance_block_time": 1729601923, + "last_issuance_block_time": 1729601936, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5156,14 +5156,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5171,7 +5171,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5184,7 +5184,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5206,9 +5206,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5223,7 +5223,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5249,9 +5249,9 @@ }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5266,7 +5266,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5292,9 +5292,9 @@ }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5309,7 +5309,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5335,9 +5335,9 @@ }, { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5352,7 +5352,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5378,9 +5378,9 @@ }, { "tx_index": 52, - "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5395,7 +5395,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5426,13 +5426,13 @@ "/v2/assets//matches": { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5446,7 +5446,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5466,13 +5466,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5486,7 +5486,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5506,13 +5506,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "tx0_index": 49, - "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 50, - "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5526,7 +5526,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5553,20 +5553,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5574,20 +5574,20 @@ }, { "block_index": 125, - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", + "event": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5595,20 +5595,20 @@ }, { "block_index": 124, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5616,20 +5616,20 @@ }, { "block_index": 124, - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "event": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5641,16 +5641,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5668,12 +5668,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -5685,16 +5685,16 @@ }, { "block_index": 195, - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "event": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600956, + "block_time": 1729602228, "asset_info": { "divisible": true, "asset_longname": null, @@ -5706,16 +5706,16 @@ }, { "block_index": 194, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "divisible": true, "asset_longname": null, @@ -5727,16 +5727,16 @@ }, { "block_index": 194, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "divisible": true, "asset_longname": null, @@ -5748,16 +5748,16 @@ }, { "block_index": 193, - "address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "asset_info": { "divisible": true, "asset_longname": null, @@ -5775,20 +5775,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -5810,14 +5810,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", + "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -5832,20 +5832,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -5860,20 +5860,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -5888,20 +5888,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -5916,7 +5916,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729600633, + "block_time": 1729601923, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5928,10 +5928,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5939,7 +5939,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -5952,10 +5952,10 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5963,7 +5963,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -5976,10 +5976,10 @@ }, { "tx_index": 55, - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", "block_index": 189, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5987,7 +5987,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600911, + "block_time": 1729602202, "asset_info": { "divisible": true, "asset_longname": null, @@ -6000,10 +6000,10 @@ }, { "tx_index": 44, - "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", + "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", "block_index": 157, - "source": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", - "destination": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", + "destination": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6011,7 +6011,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600791, + "block_time": 1729602071, "asset_info": { "divisible": true, "asset_longname": null, @@ -6024,10 +6024,10 @@ }, { "tx_index": 43, - "tx_hash": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e", + "tx_hash": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489", "block_index": 156, - "source": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", - "destination": "ae69b73bed917b45f48b50f41034f7cef2a031bd7854fd35643bea04e216865e:0", + "source": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", + "destination": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6035,7 +6035,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600786, + "block_time": 1729602066, "asset_info": { "divisible": true, "asset_longname": null, @@ -6054,9 +6054,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6065,7 +6065,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6075,7 +6075,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -6091,9 +6091,9 @@ }, { "tx_index": 29, - "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", + "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", "block_index": 142, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6102,7 +6102,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6112,7 +6112,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600717, + "block_time": 1729602006, "asset_info": { "divisible": true, "asset_longname": null, @@ -6128,9 +6128,9 @@ }, { "tx_index": 30, - "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", + "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", "block_index": 150, - "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", + "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6138,10 +6138,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 0, - "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6149,7 +6149,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600750, + "block_time": 1729602041, "asset_info": { "divisible": true, "asset_longname": null, @@ -6165,18 +6165,18 @@ }, { "tx_index": 33, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6186,7 +6186,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -6207,9 +6207,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6218,7 +6218,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6228,7 +6228,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -6256,7 +6256,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6264,7 +6264,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6273,7 +6273,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6281,7 +6281,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6290,7 +6290,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6298,7 +6298,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6307,7 +6307,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6322,27 +6322,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6357,7 +6357,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -6371,27 +6371,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", + "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", "block_index": 147, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6406,7 +6406,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600737, + "block_time": 1729602028, "asset_info": { "divisible": true, "asset_longname": null, @@ -6420,19 +6420,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6440,7 +6440,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6455,7 +6455,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -6469,19 +6469,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6489,7 +6489,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6504,7 +6504,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -6525,8 +6525,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "owner": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false, "supply": 0, @@ -6534,8 +6534,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729600799, - "last_issuance_block_time": 1729600799, + "first_issuance_block_time": 1729602080, + "last_issuance_block_time": 1729602080, "supply_normalized": "0.00000000" } ], @@ -6545,10 +6545,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "tx_index": 10, "block_index": 125, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6573,7 +6573,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6591,22 +6591,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "f85d847379a7723134aa6cdf1e6e098375a5c9e78f61420e8bd1c870d8c46b93", + "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", "tx_index": 13, "block_index": 125, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6615,22 +6615,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6", + "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", "tx_index": 12, "block_index": 124, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600641, + "block_time": 1729601931, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6639,22 +6639,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6669,22 +6669,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "1ecc316c4c172ef057883d4474a009e517642c706b414d93019c19b31fa266f9", + "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600637, + "block_time": 1729601927, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -6700,9 +6700,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6717,7 +6717,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6743,9 +6743,9 @@ }, { "tx_index": 52, - "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6760,7 +6760,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6786,9 +6786,9 @@ }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6803,7 +6803,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6829,9 +6829,9 @@ }, { "tx_index": 54, - "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "block_index": 188, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6846,7 +6846,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6872,9 +6872,9 @@ }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6889,7 +6889,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6920,9 +6920,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6937,7 +6937,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6965,13 +6965,13 @@ "/v2/orders//matches": { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6985,7 +6985,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7005,13 +7005,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7025,7 +7025,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7052,15 +7052,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "btc_amount": 2000, - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "status": "valid", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "btc_amount_normalized": "0.00002000" } ], @@ -7071,9 +7071,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "block_index": 187, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7091,7 +7091,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729600903, + "block_time": 1729602194, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7117,9 +7117,9 @@ }, { "tx_index": 54, - "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "block_index": 188, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7137,7 +7137,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7163,9 +7163,9 @@ }, { "tx_index": 49, - "tx_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", + "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", "block_index": 184, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7183,7 +7183,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600834, + "block_time": 1729602113, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7209,9 +7209,9 @@ }, { "tx_index": 51, - "tx_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "block_index": 188, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7229,7 +7229,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600907, + "block_time": 1729602198, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7255,9 +7255,9 @@ }, { "tx_index": 57, - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", "block_index": 192, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7275,7 +7275,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600933, + "block_time": 1729602215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7306,13 +7306,13 @@ "/v2/orders///matches": { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7329,7 +7329,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7349,13 +7349,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7372,7 +7372,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7392,13 +7392,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "tx0_index": 49, - "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 50, - "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7415,7 +7415,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729600834, + "block_time": 1729602113, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7441,13 +7441,13 @@ "/v2/order_matches": { "result": [ { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 54, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7461,7 +7461,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7481,13 +7481,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "tx0_index": 51, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 52, - "tx1_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7501,7 +7501,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729600903, + "block_time": 1729602194, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7521,13 +7521,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", + "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", "tx0_index": 49, - "tx0_hash": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx1_index": 50, - "tx1_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7541,7 +7541,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729600834, + "block_time": 1729602113, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7586,66 +7586,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", + "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", "block_index": 121, - "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", + "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729600628, + "block_time": 1729601918, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "5525a4b2fbe66c394a65f4c2793698365672e5fc073693b4900c7e15a5b81615", + "tx_hash": "1d3ad1a09fefd93cfd842d392f108a9ea07b46139667d21bf1217e0e8d148a31", "block_index": 120, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729600624, + "block_time": 1729601914, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "b2afd9dd0cc770db309c03dfbf91178206b73bc188f9bc4bcbd40c9e5e522747", + "tx_hash": "555f50a768779c0d5ceb16845a5ea91b5eeafd59cbc9563cb38f704eaa33a5d2", "block_index": 119, - "source": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma", + "source": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729600619, + "block_time": 1729601910, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "1f653e4ae30ba8e397ef6cc128249cce0fa9e5b6dcb257d24e740a2b22223e2c", + "tx_hash": "65d709a2aba05390e14cb46ed39a7a07f84423f10d6660b114679ff31fce6f11", "block_index": 118, - "source": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729600615, + "block_time": 1729601906, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "5bdfa64b6a4284aab2143f1f7f88c9bd0a90c767c6e467e05f4d6331ecd8a0e1", + "tx_hash": "d9c549fae7b7a5caf16608715bc92a38295e98811bbd0a8d2aef7435697db5d7", "block_index": 117, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729600611, + "block_time": 1729601902, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7657,9 +7657,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7668,7 +7668,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7678,7 +7678,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -7694,9 +7694,9 @@ }, { "tx_index": 29, - "tx_hash": "9eac99306544908e89b8d1cdc03b8e317e368f639008953a2b1291f9d26a7f41", + "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", "block_index": 142, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7705,7 +7705,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7715,7 +7715,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600717, + "block_time": 1729602006, "asset_info": { "divisible": true, "asset_longname": null, @@ -7731,9 +7731,9 @@ }, { "tx_index": 30, - "tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", + "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", "block_index": 150, - "source": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", + "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7741,10 +7741,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "031f222302b4a68af1da34e6a422cad5dfdc8516c19e17a5c8f26dfd3cc5153e", - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 0, - "last_status_tx_source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7752,7 +7752,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600750, + "block_time": 1729602041, "asset_info": { "divisible": true, "asset_longname": null, @@ -7768,18 +7768,18 @@ }, { "tx_index": 33, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7789,7 +7789,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -7810,9 +7810,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7821,7 +7821,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7831,7 +7831,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -7851,19 +7851,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7871,7 +7871,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7886,7 +7886,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -7900,19 +7900,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7920,7 +7920,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7935,7 +7935,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -7954,20 +7954,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -7988,20 +7988,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -8024,12 +8024,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "tx_index": 41, - "utxo": "fd44219c56ca652839d3b026ab0f61e08d7b8c83e406654469491a1f2d763d4d:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "utxo": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "divisible": true, "asset_longname": null, @@ -8041,16 +8041,16 @@ }, { "block_index": 154, - "address": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "address": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "divisible": true, "asset_longname": null, @@ -8071,27 +8071,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 561, @@ -8100,14 +8100,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -8118,9 +8118,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 560, @@ -8129,9 +8129,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -8141,24 +8141,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -8168,9 +8168,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 558, @@ -8182,15 +8182,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } }, "/v2/events/counts": { @@ -8225,16 +8225,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -8244,9 +8244,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 557, @@ -8256,12 +8256,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -8271,9 +8271,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 554, @@ -8283,39 +8283,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", - "utxo_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "block_time": 1729600965, + "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "divisible": true, "asset_longname": null, @@ -8325,36 +8325,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "block_time": 1729600951 + "block_time": 1729602224 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729600951, + "block_time": 1729602224, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "block_time": 1729600951 + "block_time": 1729602224 } ], "next_cursor": 536, @@ -8371,27 +8371,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8406,7 +8406,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -8420,27 +8420,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", + "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", "block_index": 147, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "destination": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "last_status_tx_hash": null, - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8455,7 +8455,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729600737, + "block_time": 1729602028, "asset_info": { "divisible": true, "asset_longname": null, @@ -8469,19 +8469,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "beeb720321a679b42c94b3f42a6f493edaf3c81196722b2b91b9991a67edeb13", + "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8489,7 +8489,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8504,7 +8504,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600713, + "block_time": 1729602002, "asset_info": { "divisible": true, "asset_longname": null, @@ -8518,19 +8518,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "28791785fb37d9e68b2b337b0e013c56e4c5c7f9585e978ea53801f7287d4a61", + "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", "block_index": 140, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "86220462791a7ff1fbf1eafebe3067ba172b74cd77d7813b5674602a126607d9", + "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8538,7 +8538,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8553,7 +8553,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729600708, + "block_time": 1729601998, "asset_info": { "divisible": true, "asset_longname": null, @@ -8572,10 +8572,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8583,7 +8583,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -8596,10 +8596,10 @@ }, { "tx_index": 62, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8607,11 +8607,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -8620,10 +8620,10 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8631,7 +8631,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -8644,10 +8644,10 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8655,11 +8655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -8668,10 +8668,10 @@ }, { "tx_index": 56, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8679,11 +8679,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -8698,14 +8698,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -8720,20 +8720,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "328f204299ad6797bcbf07c7656f5aa3758fb67d4c7865d915eb835c1ff85ccf", + "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -8748,20 +8748,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729600803, + "block_time": 1729602084, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "0bba26edc8500f21df7b5b599095f3457dd14361c35fa9dbe3cf426df676cf63", + "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -8776,20 +8776,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600799, + "block_time": 1729602080, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "93caadd29b6ab3cde7579143a5efcdbc7998ad204ec532fb356e66667f221aa2", + "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -8804,20 +8804,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600795, + "block_time": 1729602075, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", + "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "issuer": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "transfer": false, "callable": false, "call_date": 0, @@ -8832,7 +8832,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600791, + "block_time": 1729602071, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8843,14 +8843,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "transfer": false, "callable": false, "call_date": 0, @@ -8865,7 +8865,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8874,16 +8874,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -8894,16 +8894,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" } ], @@ -8914,9 +8914,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "block_index": 138, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8924,14 +8924,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600700, + "block_time": 1729601990, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "5df1bc21c7f1af6fd5b08a41cf9aa2dfb1b822add756245ce791bffb7bf6c63f", + "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", "block_index": 137, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8939,7 +8939,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600696, + "block_time": 1729601986, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8949,9 +8949,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "block_index": 138, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8959,17 +8959,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729600700, + "block_time": 1729601990, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "tx_index": 42, "block_index": 155, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -8994,7 +8994,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729600782, + "block_time": 1729602062, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9003,10 +9003,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "tx_index": 22, "block_index": 135, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9031,7 +9031,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729600687, + "block_time": 1729601977, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9043,10 +9043,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "tx_index": 18, "block_index": 131, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9071,7 +9071,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729600670, + "block_time": 1729601960, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9083,10 +9083,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "tx_index": 14, "block_index": 130, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9111,7 +9111,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729600666, + "block_time": 1729601956, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9123,10 +9123,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "e3eb54886526579c53ae75f92bbe33152da884e88be824fb0dc2863d1a040720", + "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", "tx_index": 10, "block_index": 125, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9151,7 +9151,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729600646, + "block_time": 1729601936, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9169,22 +9169,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9193,22 +9193,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4a13884ddd29de1b1f87aad1874ad19a7c4e2e314ece8d6bff29c8681fe59611", + "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600683, + "block_time": 1729601973, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9217,22 +9217,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "521256492552d0518c0e710289fba28b4a2074aad676fc33e2780ffd27c9728d", + "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600679, + "block_time": 1729601969, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9241,22 +9241,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c452f280e2244b755f1b6f469b70ba779d640782be72bf275de0f68d320d1cc", + "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "d72832daa10bee8794b5960dc935acc7ea16f819dfb53f5edf97ab96c717c1ed", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600674, + "block_time": 1729601964, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9265,22 +9265,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "187826b679691eb2ff6d02b9679bfeca9f1e76abb8b1d0b8c0bc2cfa337245f8", + "tx_hash": "8aab2952776b8e585c7b8c0de38a82736ba4f3b1389a94782a6a9464edacba10", "tx_index": 17, "block_index": 129, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "fairminter_tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600662, + "block_time": 1729601953, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9294,22 +9294,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -9326,8 +9326,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2", - "address": "bcrt1ql08t0qg9zw25vp9rzdk66gn4mgex2cvamrwxwy" + "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", + "address": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c" }, { "vout": 2, @@ -9335,8 +9335,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d", - "address": "bcrt1qq7znd6f5f4rl8tzz5wjtcqg5j3yxy9anv87kma" + "txid": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", + "address": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4" } ], "next_cursor": null, @@ -9345,28 +9345,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155" + "tx_hash": "9a55e6d3e0a8444e2506c0165584a0c088cf5c7fd47e14fc83902b53a4a64251" }, { - "tx_hash": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465" + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f" }, { - "tx_hash": "e3db55a5448d41fcb5a4f3f224fc15d742a283bf435693510195dd4718116671" + "tx_hash": "fcfd0fc820a5d2c8bfefe898c6057bfda1c3ef32f726d5fcb147e25d7a5a6396" }, { - "tx_hash": "184dd6bb2594bb7e7b2a423ff30889d2b158a92d4eddb5636b4821bea502d080" + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7" }, { - "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e" + "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2" }, { - "tx_hash": "ebcfb23c56795fb111ae0af96d7afc0c04d32e1e33a916d4de6298d5694c3acc" + "tx_hash": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6" }, { - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6" + "tx_hash": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf" }, { - "tx_hash": "5ac25c24e5f0553ef9f5dadb3e7be99f1f8320195de25dece5da40fa28276df6" + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" } ], "next_cursor": null, @@ -9375,7 +9375,7 @@ "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { "block_index": 8, - "tx_hash": "6d129d2a3f91a86fee7a32c934229380ce59e1a886037b66785a5788ceaa68d8" + "tx_hash": "9de1943fcf1147bb5df342d8691b323c13457a25336bb16a008c1940b1a7dd75" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9386,17 +9386,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "ef93ca25f020539556e86196112ad12a620e61a21b9f5ac6c0df0c78074c97c2" + "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "030ce97c8c4518bb69752366ab5d5e5c1f5b71289640e142a29fff41e844c9480e" + "result": "03946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f23" }, "/v2/bitcoin/transactions/": { - "result": "020000000001013dfdf08ba098a35f8faf45b2e8766aecfe8f87ce1da847fbcf4d258e70c624b60100000000ffffffff03e803000000000000160014b449d61cdbdc3813d9cb3bc4fdc53ce0858c589000000000000000000c6a0a925e752ab5d15d326204dced0827010000001600147126c968f7e1cd9e1335a14c9336b6d74d73a8b802473044022075d5eea6a3e1d76ab724b1c42e7ae768d9b460fb50531f5c092d38338c262729022046631e2cc901af9c712fea6929ed245eb6e7f45822cca0cb0ec29c01322077330121038e94ba4d0049a559568ec0807dd86fd0d6d15fb01e7ee938979cae58f3fd734500000000" + "result": "0200000000010199f235875cfd49f760882fcaa4b278fa0374987369cda7d7b42e789d0854890d0100000000ffffffff03e80300000000000016001492b5051f546edf56f17f264039d77d86944357d200000000000000000c6a0a022a7d05ec02a8bad228dced08270100000016001407c1b21a0d36c635f4040393f57e2dc791018c2202473044022031fe513ea57ee002932b62f19bdfb20d9ad85e8e09a4d9831434f4cd1ef13b8b022025fb71583669e27f6c0d24e883cd5064cd7d4f41ab14fe85ec0b9032a1906149012103ddb31ff5cc13c44a222b3cea61fa6131163a5a06fd8f30f1c38b0fe85b68a2ea00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9419,27 +9419,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63 }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "quantity": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, "asset_info": { "divisible": true, @@ -9450,22 +9450,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -9475,22 +9475,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 196, - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -9500,30 +9500,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729600969.716605, + "block_time": 1729602242.0374818, "btc_amount": 0, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "destination": "", "fee": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, - "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", + "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -9537,7 +9537,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, @@ -9546,19 +9546,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -9568,7 +9568,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, @@ -9577,27 +9577,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63 }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "quantity": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, "asset_info": { "divisible": true, @@ -9608,22 +9608,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "CREDIT", "params": { - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -9633,22 +9633,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "asset": "XCP", "block_index": 196, - "event": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -9658,30 +9658,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 }, { - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729600969.716605, + "block_time": 1729602242.0374818, "btc_amount": 0, - "data": "020000000000000001000000000000271080a4017fe1b98d65a2cda903172680e839f76ade5a", + "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", "destination": "", "fee": 10000, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", - "tx_hash": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", "tx_index": 63, - "utxos_info": "8ce42dcb3e363bbb855d9528f6a36a18c4baa8d6c75f5b4a17ca610fbb112809:1", + "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "memo": null, "asset_info": { "divisible": true, @@ -9695,7 +9695,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729600969.716605 + "timestamp": 1729602242.0374818 } ], "next_cursor": null, @@ -9717,15 +9717,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", "block_index": 196, - "block_time": 1729600965, + "block_time": 1729602237, "difficulty": 545259519, - "previous_block_hash": "60d5619d108b26c2365d4fac3a0fa0b1a0ba4c82644b43a7b9a30af24a0fa6b4" + "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107" }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 544, @@ -9737,17 +9737,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7fd16d9ca3bdad791399c5140a0cac3617a06a167664e64d26ca21b57d24ffca", + "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", "block_index": 196, - "block_time": 1729600965, + "block_time": 1729602237, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "fee": 0, - "source": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "utxos_info": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1 2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9757,9 +9757,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 545, @@ -9773,16 +9773,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "out_index": 0, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 277, @@ -9795,15 +9795,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "8057076364b621ac1916f493cf6400e79d76213b8832565bac92dbcfdbb121c8", - "messages_hash": "fc0eb00127ae7e3e47a8c347f714722b096b5d345a34d81630d8dcf51f7eea72", + "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", + "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", "transaction_count": 1, - "txlist_hash": "96fabb069a788bc5e5806c8863a90f8701d3f9677f9b3b3b089679647355c79d", - "block_time": 1729600965 + "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", + "block_time": 1729602237 }, "tx_hash": null, "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 549, @@ -9816,12 +9816,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62 }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 548, @@ -9837,12 +9837,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 1500000000, "tx_index": 62, - "utxo": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", - "utxo_address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", - "block_time": 1729600965, + "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -9852,9 +9852,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 553, @@ -9866,16 +9866,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -9885,9 +9885,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 557, @@ -9901,14 +9901,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "memo": null, "quantity": 10000, - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "status": "valid", - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", "tx_index": 55, - "block_time": 1729600911, + "block_time": 1729602202, "asset_info": { "divisible": true, "asset_longname": null, @@ -9918,9 +9918,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "958200e08d757c2e75a2076b56cf370acdbd83b806fa9a1231a592a5e9e074e6", + "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", "block_index": 189, - "block_time": 1729600911 + "block_time": 1729602202 } ], "next_cursor": null, @@ -9934,15 +9934,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "tx_index": 56, - "block_time": 1729600915, + "block_time": 1729602207, "asset_info": { "divisible": true, "asset_longname": null, @@ -9952,9 +9952,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "3fb94a9ee8b26003b9d1bbf802ab6555ab8a0893b72772f2f5f337243bfd404a", + "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", "block_index": 190, - "block_time": 1729600915 + "block_time": 1729602207 } ], "next_cursor": 509, @@ -9977,20 +9977,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "status": "valid", - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "tx_index": 60, - "block_time": 1729600951, + "block_time": 1729602224, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "9eb25f2783f9ac4d33abdb278530e94bd4cdf2bb7a4e2dd60892981b79a02155", + "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", "block_index": 194, - "block_time": 1729600951 + "block_time": 1729602224 } ], "next_cursor": null, @@ -10007,15 +10007,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "tx_index": 41, - "block_time": 1729600767, + "block_time": 1729602058, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10029,9 +10029,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "5cbb39fd787c4a4a25244524d1d53da0c3ae16d79b1435324798019ff743d19c", + "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", "block_index": 154, - "block_time": 1729600767 + "block_time": 1729602058 } ], "next_cursor": null, @@ -10052,11 +10052,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729600808 + "block_time": 1729602088 }, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "block_index": 161, - "block_time": 1729600808 + "block_time": 1729602088 } ], "next_cursor": 381, @@ -10079,22 +10079,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", "transfer": false, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "tx_index": 48, - "block_time": 1729600808, + "block_time": 1729602088, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "83c524914e7b9ca89dd21c795ecb26ee9c269269a1d84cbebda68e07c8063a52", + "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", "block_index": 161, - "block_time": 1729600808 + "block_time": 1729602088 } ], "next_cursor": 388, @@ -10109,12 +10109,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qauzlujpwf9uf0hkfrp7f8z3kylsc5j5jqd5glm", + "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "tx_index": 61, - "block_time": 1729600956, + "block_time": 1729602228, "asset_info": { "divisible": true, "asset_longname": null, @@ -10124,9 +10124,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "13d6c1e33df8e12a871338aa6c52e23aeefa9d2a3c2ef122a0aba7b0b45c496b", + "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", "block_index": 195, - "block_time": 1729600956 + "block_time": 1729602228 } ], "next_cursor": 157, @@ -10151,11 +10151,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "open", - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "tx_index": 59, - "block_time": 1729600947, + "block_time": 1729602219, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10179,9 +10179,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "c3f76e6064ac1738c3b6769d5ed05574d42070d306912eeef44c066dc64c3d93", + "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", "block_index": 193, - "block_time": 1729600947 + "block_time": 1729602219 } ], "next_cursor": 516, @@ -10199,20 +10199,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40", + "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", "tx0_index": 51, - "tx1_address": "bcrt1q5sqhlcde34j69ndfqvtjdq8g88mk4hj62uhlvw", + "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "tx1_index": 54, - "block_time": 1729600907, + "block_time": 1729602198, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10231,9 +10231,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3fe2f2554d57fa74c5476984e1521f626b93a6cf642181747426ef049553768e", + "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", "block_index": 188, - "block_time": 1729600907 + "block_time": 1729602198 } ], "next_cursor": 475, @@ -10246,11 +10246,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0" + "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db" }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 } ], "next_cursor": 490, @@ -10263,11 +10263,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645" + "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b" }, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_time": 1729600903 + "block_time": 1729602194 } ], "next_cursor": null, @@ -10279,13 +10279,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", + "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", "status": "completed" }, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_time": 1729600903 + "block_time": 1729602194 } ], "next_cursor": 454, @@ -10299,18 +10299,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "order_match_id": "0a719acd10806bc680a19dc0dbb359060b3d76ceeaac4d6a8a49d5e4a50c8a40_6c4d586fa97f4fea90eeefa2ce94d7b11c1e7f314092b64410de116c2678e645", - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "status": "valid", - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "tx_index": 53, - "block_time": 1729600903, + "block_time": 1729602194, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "078f893b3efd67c46fd2dcf7365a49bc7af56e03fb3de41e645716405081b175", + "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", "block_index": 187, - "block_time": 1729600903 + "block_time": 1729602194 } ], "next_cursor": null, @@ -10323,16 +10323,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "118710286ae366a0bb50919071556d4d4beaa87a1c5ac09317373e20076059c0", - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "tx_index": 58, - "block_time": 1729600933 + "block_time": 1729602215 }, - "tx_hash": "97e28c2cb3a3f51d99a0d0403f7a6844d9403108f8652257992cd67ca835fa91", + "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", "block_index": 192, - "block_time": 1729600933 + "block_time": 1729602215 } ], "next_cursor": null, @@ -10345,13 +10345,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "block_time": 1729600834 + "order_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "block_time": 1729602113 }, "tx_hash": null, "block_index": 184, - "block_time": 1729600834 + "block_time": 1729602113 } ], "next_cursor": 460, @@ -10364,14 +10364,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "c4a2a544376d093f697880c71d340561386fa95b853a91d2adb156686295f25c_f1016c6d1e75a74f068a6a371b8b01da3a7d8860d1b2de951659facee0ddc30f", - "tx0_address": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "tx1_address": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", - "block_time": 1729600834 + "order_match_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "block_time": 1729602113 }, "tx_hash": null, "block_index": 184, - "block_time": 1729600834 + "block_time": 1729602113 } ], "next_cursor": null, @@ -10389,14 +10389,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "origin": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "satoshirate": 1, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "tx_index": 33, - "block_time": 1729600733, + "block_time": 1729602023, "asset_info": { "divisible": true, "asset_longname": null, @@ -10409,9 +10409,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "block_index": 146, - "block_time": 1729600733 + "block_time": 1729602023 } ], "next_cursor": 254, @@ -10426,9 +10426,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": 0, - "tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", + "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", "asset_info": { "divisible": true, "asset_longname": null, @@ -10438,9 +10438,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 302, @@ -10454,13 +10454,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mpnN1borroRjqs6tfeRFiULwYX4xpkusmg", + "destination": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", "dispense_quantity": 10, - "dispenser_tx_hash": "21db0a19175114539cf24c2a9b6de1e23c1ce4d2c017c88ee1e2056e52956ff3", - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", - "tx_hash": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", + "dispenser_tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx_hash": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", "tx_index": 31, - "block_time": 1729600725, + "block_time": 1729602015, "asset_info": { "divisible": true, "asset_longname": null, @@ -10470,9 +10470,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "df6985ffaa48c4ff4e10e789c05bc9128cc373004205152907a02190c6b9ed71", + "tx_hash": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", "block_index": 144, - "block_time": 1729600725 + "block_time": 1729602015 } ], "next_cursor": null, @@ -10487,14 +10487,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwynvj68hu8xeuye459xfxd4k6axh829cm3wavw", + "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "44cacae3aca1bbd88a58be2a0874f918005100f1fd9587876095ba936e50dd1a", - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -10505,9 +10505,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 280, @@ -10522,19 +10522,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qk3yav8xmmsup8kwt80z0m3fuuzzcckysqcw079", + "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "tx_index": 25, "value": 66600.0, - "block_time": 1729600700, + "block_time": 1729601990, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "dbec922eca4ec9fd7d526560ab4d4094a61e47fc06016f52c128732dea06b803", + "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", "block_index": 138, - "block_time": 1729600700 + "block_time": 1729601990 } ], "next_cursor": 213, @@ -10565,12 +10565,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "start_block": 0, "status": "open", - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "tx_index": 42, - "block_time": 1729600782, + "block_time": 1729602062, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10578,9 +10578,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b72e7304f0c0d543364e38daa8a5db9955bf85baf3c774d3324290b4d681fee3", + "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", "block_index": 155, - "block_time": 1729600782 + "block_time": 1729602062 } ], "next_cursor": 196, @@ -10593,11 +10593,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "b046b6b80bdb2ac1f634be0afd4b9590c443c45ce79a57db4731bc290b56c07c" + "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216" }, "tx_hash": null, "block_index": 130, - "block_time": 1729600666 + "block_time": 1729601956 } ], "next_cursor": 110, @@ -10613,17 +10613,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b1258eb8c5e194d79161414f9c0b3c01de7750cf467a926bafde9906462fc156", + "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", "paid_quantity": 34, - "source": "bcrt1q5a3r5end6cm87q42nfpaf0wuk5jumj2yyc8erx", + "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", "status": "valid", - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "tx_index": 23, - "block_time": 1729600691, + "block_time": 1729601981, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, @@ -10631,9 +10631,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "5ce20b9b54525aaff5e0466805f038ed9c463be66b6e324e2652adab2a26ef72", + "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", "block_index": 136, - "block_time": 1729600691 + "block_time": 1729601981 } ], "next_cursor": 190, @@ -10647,28 +10647,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25:1", + "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "status": "valid", - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "tx_index": 39, - "block_time": 1729600759, + "block_time": 1729602049, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "998c1f586c512d8adf9d24dc6f372cc16480c455a13f8f5b6c327bbc31ab5b25", + "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", "block_index": 152, - "block_time": 1729600759 + "block_time": 1729602049 } ], "next_cursor": 296, @@ -10682,28 +10682,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qgw7rquwaupclc3cfhnpd7k8xays8pdpzj8uchp", + "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "46a1f6f7e3f89b61760c2378bb8752e8a91e7adbf19363ed092283774100c465:0", + "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", "status": "valid", - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "tx_index": 38, - "block_time": 1729600754, + "block_time": 1729602045, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q55ss76n5682v6zxslht2kqk7j6erex2l0muamu", + "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7bfea5b664257df1fd0e284a8780be3c6dac6c534ef672fd1add766f80ad78e2", + "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", "block_index": 151, - "block_time": 1729600754 + "block_time": 1729602045 } ], "next_cursor": null, @@ -10717,14 +10717,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a:0", + "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", "msg_index": 1, "quantity": 1500000000, - "source": "b624c6708e254dcffb47a81dce878ffeec6a76e8b245af8f5fa398a08bf0fd3d:1", + "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", "status": "valid", - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "tx_index": 62, - "block_time": 1729600965, + "block_time": 1729602237, "asset_info": { "divisible": true, "asset_longname": null, @@ -10734,9 +10734,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "2fdb93806049d0dac332714e93a3f9f5c2fcb3f88a76b6bc739938071ee2ac4a", + "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", "block_index": 196, - "block_time": 1729600965 + "block_time": 1729602237 } ], "next_cursor": 555, @@ -10751,17 +10751,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzcs3tfad3sng8s3kyv3vh8qhy6hjqy0wguylyc", + "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", "status": "valid", - "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", + "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", "tx_index": 9, - "block_time": 1729600628, + "block_time": 1729601918, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "85370891e405d497f2d051fe9c8bf6ce6655502a6fc3ba27e3399cd6a2b27449", + "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", "block_index": 121, - "block_time": 1729600628 + "block_time": 1729601918 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index ad588db344..3fff49748f 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -338,7 +338,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() diff --git a/dredd.yml b/dredd.yml index 88b1db1063..395fb7cb96 100644 --- a/dredd.yml +++ b/dredd.yml @@ -39,7 +39,7 @@ only: - Addresses > Get Events By Addresses > Get Events By Addresses - Addresses > Get Mempool Events By Addresses > Get Mempool Events By Addresses - Addresses > Get Address Balances > Get Address Balances -- Addresses > Get Balance By Address And Asset > Get Balance By Address And Asset +- Addresses > Get Balances By Address And Asset > Get Balances By Address And Asset - Addresses > Get Credits By Address > Get Credits By Address - Addresses > Get Debits By Address > Get Debits By Address - Addresses > Get Broadcasts By Source > Get Broadcasts By Source @@ -89,7 +89,7 @@ only: - Assets > Get Valid Assets > Get Valid Assets - Assets > Get Asset > Get Asset - Assets > Get Asset Balances > Get Asset Balances -- Assets > Get Balance By Asset And Address > Get Balance By Asset And Address +- Assets > Get Balances By Asset And Address > Get Balances By Asset And Address - Assets > Get Orders By Asset > Get Orders By Asset - Assets > Get Order Matches By Asset > Get Order Matches By Asset - Assets > Get Credits By Asset > Get Credits By Asset From 25e214feeae0ecccba0f32557459f94471f5e9b7 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Tue, 22 Oct 2024 13:11:03 +0000 Subject: [PATCH 27/71] update fixtures --- .../test/fixtures/api_v2_fixtures.json | 76 ++++++++++--------- 1 file changed, 42 insertions(+), 34 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 2da7c9518b..4259b66366 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -1840,21 +1840,25 @@ "result_count": 12 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/balances/NODIVISIBLE?verbose=true": { - "result": { - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "asset": "NODIVISIBLE", - "quantity": 985, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "No divisible asset", - "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "divisible": false, - "locked": false - }, - "quantity_normalized": "985" - } + "result": [ + { + "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "asset": "NODIVISIBLE", + "quantity": 985, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "No divisible asset", + "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "divisible": false, + "locked": false + }, + "quantity_normalized": "985" + } + ], + "next_cursor": null, + "result_count": 1 }, "http://localhost:10009/v2/addresses/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc/credits?verbose=true": { "result": [ @@ -5093,21 +5097,25 @@ "result_count": 3 }, "http://localhost:10009/v2/assets/NODIVISIBLE/balances/mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc?verbose=true": { - "result": { - "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "asset": "NODIVISIBLE", - "quantity": 985, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "No divisible asset", - "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", - "divisible": false, - "locked": false - }, - "quantity_normalized": "985" - } + "result": [ + { + "address": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "asset": "NODIVISIBLE", + "quantity": 985, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "No divisible asset", + "issuer": "mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc", + "divisible": false, + "locked": false + }, + "quantity_normalized": "985" + } + ], + "next_cursor": null, + "result_count": 1 }, "http://localhost:10009/v2/assets/NODIVISIBLE/orders?verbose=true": { "result": [], @@ -9250,8 +9258,8 @@ ] }, "/v2/addresses/
/balances/": { - "function": "get_balance_by_address_and_asset", - "description": "Returns the balance of an address and asset", + "function": "get_balances_by_address_and_asset", + "description": "Returns the balances of an address and asset", "args": [ { "name": "address", @@ -14336,8 +14344,8 @@ ] }, "/v2/assets//balances/
": { - "function": "get_balance_by_asset_and_address", - "description": "Returns the balance of an address and asset", + "function": "get_balances_by_asset_and_address", + "description": "Returns the balances of an address and asset", "args": [ { "name": "asset", From bd0de06480f0ba43ec9b904e6b6fcc6ce8b73966 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 09:38:41 -0400 Subject: [PATCH 28/71] Release Notes for v10.5.1 --- release-notes/release-notes-v10.5.0.md | 1 - release-notes/release-notes-v10.5.1.md | 30 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 release-notes/release-notes-v10.5.1.md diff --git a/release-notes/release-notes-v10.5.0.md b/release-notes/release-notes-v10.5.0.md index 138827101e..a5d5fb9661 100644 --- a/release-notes/release-notes-v10.5.0.md +++ b/release-notes/release-notes-v10.5.0.md @@ -42,7 +42,6 @@ IMPORTANT: This update requires an automatic reparse from block 865999. However, - Add the following new routes: - `/v2/fairmints` - `/v2/fairmints/` -- `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` ## CLI diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md new file mode 100644 index 0000000000..c65f74d55d --- /dev/null +++ b/release-notes/release-notes-v10.5.1.md @@ -0,0 +1,30 @@ +# Release Notes - Counterparty Core v10.5.1 (2024-10-??) + +TODO + +# Upgrading + +TODO + +Backwards-incompatible change +- `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` + + +# ChangeLog + +## Bugfixes + +## Codebase + + +## API + +- `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` + +## CLI + + +# Credits + +* Ouziel Slama +* Adam Krellenstein From 9a99b70bbf344f2eae8a1699681474b073e0ed53 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 17:52:40 -0400 Subject: [PATCH 29/71] RSFetcher Lockfile Edge Case --- .../counterpartycore/lib/backend/rsfetcher.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 232000d54f..aecec69dbf 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -70,10 +70,13 @@ def acquire_lockfile(self): def release_lockfile(self): if self.lockfile: - fcntl.flock(self.lockfile, fcntl.LOCK_UN) - self.lockfile.close() + if not self.lockfile.closed: + fcntl.flock(self.lockfile, fcntl.LOCK_UN) + self.lockfile.close() + logger.debug("Lockfile released.") + else: + logger.debug("Lockfile was already closed.") os.remove(self.lockfile_path) - logger.debug("Lockfile released.") def start(self, start_height=0): logger.info("Starting RSFetcher thread...") From 359ade5751c6b32337d7da3e13d6069e5c95e054 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 19:23:23 -0400 Subject: [PATCH 30/71] 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 5eb7071e1c..0fc3144398 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -745,6 +745,7 @@ def handle_interrupt_signal(signum, frame): if ( not os.path.exists(config.DATABASE) and args.catch_up == "bootstrap" ) or args.catch_up == "bootstrap-always": + bootstrap(no_confirm=True) # Initialise database db = database.initialise_db() From e9523fcdd28343b071f7c8ad91efd4f371478f65 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 20:57:56 -0400 Subject: [PATCH 31/71] Fix SQLite3 Logs?? --- .../counterpartycore/lib/database.py | 29 ++++++++++++++++++- counterparty-core/requirements.txt | 2 +- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 118991d0b5..63c08bafd4 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -4,14 +4,39 @@ import apsw import apsw.bestpractice +import apsw.ext # Import apsw.ext to access log_sqlite import psutil from termcolor import cprint from counterpartycore.lib import config, exceptions, ledger, util -apsw.bestpractice.apply(apsw.bestpractice.recommended) # includes WAL mode +# Apply best practices except for `library_logging` +best_practices = list(apsw.bestpractice.recommended) +best_practices.remove(apsw.bestpractice.library_logging) +apsw.bestpractice.apply(best_practices) + logger = logging.getLogger(config.LOGGER_NAME) +# Configure the APSW logger to forward SQLite logs and change all levels to DEBUG +apsw_logger = logging.getLogger('apsw') +apsw_logger.setLevel(logging.DEBUG) # Set minimum level to DEBUG + +# Create a handler that changes all log levels to DEBUG +class AllToDebugHandler(logging.StreamHandler): + def emit(self, record): + record.levelno = logging.DEBUG + record.levelname = 'DEBUG' + super().emit(record) + +# Add the handler to the apsw logger +apsw_handler = AllToDebugHandler() +apsw_formatter = logging.Formatter('%(asctime)s %(name)s %(levelname)s %(message)s') +apsw_handler.setFormatter(apsw_formatter) +apsw_logger.addHandler(apsw_handler) + +# Manually set up SQLite logging to use our `apsw` logger +apsw.ext.log_sqlite(logger=apsw_logger) + def rowtracer(cursor, sql): """Converts fetched SQL data into dict-style""" @@ -320,3 +345,5 @@ def table_exists(cursor, table): f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table}'" # nosec B608 # noqa: S608 ).fetchone() return table_name is not None + + diff --git a/counterparty-core/requirements.txt b/counterparty-core/requirements.txt index 83c8c20076..ecc8c1f84d 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 +counterparty-rs==10.5.0 \ No newline at end of file From eb5727f3facfc447bb9ab14bcba81e33473db77d Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 21:25:36 -0400 Subject: [PATCH 32/71] Fix SQLite3 Logs! --- .../counterpartycore/lib/database.py | 32 +++---------------- counterparty-core/counterpartycore/lib/log.py | 12 +++++++ 2 files changed, 16 insertions(+), 28 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 63c08bafd4..d07ccbdcd6 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -4,38 +4,16 @@ import apsw import apsw.bestpractice -import apsw.ext # Import apsw.ext to access log_sqlite +import apsw.ext import psutil from termcolor import cprint from counterpartycore.lib import config, exceptions, ledger, util -# Apply best practices except for `library_logging` -best_practices = list(apsw.bestpractice.recommended) -best_practices.remove(apsw.bestpractice.library_logging) -apsw.bestpractice.apply(best_practices) +apsw.bestpractice.apply(apsw.bestpractice.recommended) # includes WAL mode logger = logging.getLogger(config.LOGGER_NAME) - -# Configure the APSW logger to forward SQLite logs and change all levels to DEBUG -apsw_logger = logging.getLogger('apsw') -apsw_logger.setLevel(logging.DEBUG) # Set minimum level to DEBUG - -# Create a handler that changes all log levels to DEBUG -class AllToDebugHandler(logging.StreamHandler): - def emit(self, record): - record.levelno = logging.DEBUG - record.levelname = 'DEBUG' - super().emit(record) - -# Add the handler to the apsw logger -apsw_handler = AllToDebugHandler() -apsw_formatter = logging.Formatter('%(asctime)s %(name)s %(levelname)s %(message)s') -apsw_handler.setFormatter(apsw_formatter) -apsw_logger.addHandler(apsw_handler) - -# Manually set up SQLite logging to use our `apsw` logger -apsw.ext.log_sqlite(logger=apsw_logger) +apsw.ext.log_sqlite(logger=logger) def rowtracer(cursor, sql): @@ -344,6 +322,4 @@ def table_exists(cursor, table): table_name = cursor.execute( f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table}'" # nosec B608 # noqa: S608 ).fetchone() - return table_name is not None - - + return table_name is not None \ No newline at end of file diff --git a/counterparty-core/counterpartycore/lib/log.py b/counterparty-core/counterpartycore/lib/log.py index 0282a87d5b..c5dc0d1666 100644 --- a/counterparty-core/counterpartycore/lib/log.py +++ b/counterparty-core/counterpartycore/lib/log.py @@ -122,6 +122,14 @@ def json_record(self, message: str, extra: dict, record: logging.LogRecord) -> d return super(CustomisedJSONFormatter, self).json_record(message, extra, record) +class SQLiteFilter(logging.Filter): + def filter(self, record): + if "SQLITE" in record.getMessage(): + record.levelno = logging.DEBUG + record.levelname = "DEBUG" + return True + + def set_up( verbose=0, quiet=True, @@ -141,6 +149,10 @@ def set_up( logger = logging.getLogger(config.LOGGER_NAME) + # Add the SQLite filter to the logger + sqlite_filter = SQLiteFilter() + logger.addFilter(sqlite_filter) + log_level = logging.ERROR if quiet: log_level = logging.ERROR From fae1e1ad80143f01a6acc565b279ab0d3966c5f0 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 21:52:31 -0400 Subject: [PATCH 33/71] Fix Startup --- .../counterpartycore/lib/api/api_server.py | 25 +++++++++++++------ .../counterpartycore/lib/api/api_v1.py | 8 +++--- .../counterpartycore/lib/api/wsgi.py | 1 + 3 files changed, 23 insertions(+), 11 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 237a8a6803..b9d893bfae 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -393,23 +393,35 @@ def init_flask_app(): def run_api_server(args, server_ready_value, stop_event): + logger.info("Starting API Server process...") + # Initialize Sentry, logging, config, etc. sentry.init() server.initialise_log_and_config(argparse.Namespace(**args)) - app = init_flask_app() watcher = api_watcher.APIWatcher() - wsgi_server = wsgi.WSGIApplication(app, args=args) - parent_checker = ParentProcessChecker(wsgi_server) + watcher.start() + + app = init_flask_app() + + wsgi_server = None + parent_checker = None try: - logger.info("Starting API Server process...") + logger.info("Starting Parent Process Checker thread...") + parent_checker = ParentProcessChecker(wsgi_server) + parent_checker.start() + + wsgi_server = wsgi.WSGIApplication(app, args=args) app.app_context().push() + server_ready_value.value = 1 - watcher.start() wsgi_server.run() - parent_checker.start() + + except Exception as e: + logger.error("Exception in API Server process!") + raise e finally: logger.trace("Shutting down API Server...") @@ -421,7 +433,6 @@ def run_api_server(args, server_ready_value, stop_event): if wsgi_server is not None: logger.trace("Stopping WSGI Server thread...") wsgi_server.stop() - wsgi_server.join() if parent_checker is not None: logger.trace("Stopping Parent Process Checker thread...") diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 9aadf90bd8..ff021a2440 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -454,13 +454,13 @@ def __init__(self): self.db = None def stop(self): - logger.info("Stopping API Status Poller thread...") + logger.info("Stopping API v1 Status Poller thread...") self.stop_event.set() self.join() - logger.info("API Status Poller thread stopped.") + logger.info("API v1 Status Poller thread stopped.") def run(self): - logger.info("Starting API Status Poller thread...") + logger.info("Starting v1 API Status Poller thread...") global CURRENT_API_STATUS_CODE, CURRENT_API_STATUS_RESPONSE_JSON # noqa: PLW0603 self.db = database.get_db_connection(config.API_DATABASE, read_only=True, check_wal=False) @@ -501,7 +501,7 @@ def run(self): if self.db is not None: self.db.close() self.db = None - logger.info("API Status Poller thread stopped.") + logger.info("API v1 Status Poller thread stopped.") class APIServer(threading.Thread): diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 1e72546227..f2b5063a49 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -250,6 +250,7 @@ class WSGIApplication: def __init__(self, app, args=None): self.app = app self.args = args + logger.info(f"Starting WSGI Server: {config.WSGI_SERVER}") if config.WSGI_SERVER == "gunicorn": self.server = GunicornApplication(self.app, self.args) elif config.WSGI_SERVER == "werkzeug": From f1b774811410db02323e28c64cf0e133d1f90516 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 21:53:47 -0400 Subject: [PATCH 34/71] Locking for Logging --- counterparty-core/counterpartycore/lib/log.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/log.py b/counterparty-core/counterpartycore/lib/log.py index c5dc0d1666..e7cef8fe48 100644 --- a/counterparty-core/counterpartycore/lib/log.py +++ b/counterparty-core/counterpartycore/lib/log.py @@ -5,6 +5,7 @@ import traceback from datetime import datetime from logging.handlers import RotatingFileHandler +import threading import zmq from dateutil.tz import tzlocal @@ -167,6 +168,9 @@ def set_up( logger.setLevel(log_level) + # Create a lock for file handlers + log_lock = threading.Lock() + # File Logging if log_file: fileh = RotatingFileHandler( @@ -174,6 +178,15 @@ def set_up( ) fileh.setLevel(logging.TRACE) fileh.setFormatter(CustomisedJSONFormatter()) + + # Wrap the emit method to use the lock + original_emit = fileh.emit + + def locked_emit(record): + with log_lock: + original_emit(record) + + fileh.emit = locked_emit logger.addHandler(fileh) if config.LOG_IN_CONSOLE: From 12db8f19f37df77bd6321b3c0f5f008d16241af5 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 21:56:28 -0400 Subject: [PATCH 35/71] Tweak Log Messages for RSFetcher Lockfile --- .../counterpartycore/lib/backend/rsfetcher.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index aecec69dbf..1ad20c4840 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -53,19 +53,19 @@ def __init__(self, indexer_config=None): def acquire_lockfile(self): # Ensure the directory exists os.makedirs(self.config["db_dir"], exist_ok=True) - logger.debug(f"Ensured that directory {self.config['db_dir']} exists for lockfile.") + logger.debug(f"RSFetcher - Ensured that directory {self.config['db_dir']} exists for lockfile.") try: fd = os.open(self.lockfile_path, os.O_CREAT | os.O_RDWR) self.lockfile = os.fdopen(fd, "w") fcntl.flock(self.lockfile, fcntl.LOCK_EX | fcntl.LOCK_NB) - logger.debug("Lockfile acquired.") + logger.debug("RSFetcher - Lockfile acquired.") except IOError as e: if e.errno in (errno.EACCES, errno.EAGAIN): - logger.error(f"Another instance is running. Unable to acquire lockfile: {e}") + logger.error(f"RSFetcher - Another instance is running. Unable to acquire lockfile: {e}") raise RuntimeError("Failed to acquire lockfile.") from e else: - logger.error(f"Unexpected error acquiring lockfile: {e}") + logger.error(f"RSFetcher - Unexpected error acquiring lockfile: {e}") raise def release_lockfile(self): @@ -73,9 +73,9 @@ def release_lockfile(self): if not self.lockfile.closed: fcntl.flock(self.lockfile, fcntl.LOCK_UN) self.lockfile.close() - logger.debug("Lockfile released.") + logger.debug("RSFetcher - Lockfile released.") else: - logger.debug("Lockfile was already closed.") + logger.debug("RSFetcher - Lockfile was already closed.") os.remove(self.lockfile_path) def start(self, start_height=0): From 403c46d9cfc07518a867bd7b2b8cc182faf2c69c Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 22:07:33 -0400 Subject: [PATCH 36/71] Refactor RS Fetcher Threading --- .../counterpartycore/lib/backend/rsfetcher.py | 107 +++++++++--------- counterparty-core/counterpartycore/server.py | 17 +-- 2 files changed, 66 insertions(+), 58 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 1ad20c4840..01fcdc2d05 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -5,6 +5,7 @@ import random import threading import time +import queue from concurrent.futures import ThreadPoolExecutor from counterparty_rs import indexer @@ -44,9 +45,9 @@ def __init__(self, indexer_config=None): # Initialize additional attributes self.executor = None - self.stopped = True - self.prefetch_queue = [] - self.prefetch_queue_size = 0 + self.stopped_event = threading.Event() # Use an Event for stopping threads + # Use queue.Queue for thread-safe prefetching + self.prefetch_queue = queue.Queue(maxsize=PREFETCH_QUEUE_SIZE) self.prefetch_queue_initialized = False self.next_height = 0 @@ -102,9 +103,8 @@ def start(self, start_height=0): logger.error(f"Failed to initialize fetcher: {e}. Retrying in 5 seconds...") raise e # prefetching - self.stopped = False - self.prefetch_queue = [] - self.prefetch_queue_size = 0 + self.stopped_event.clear() # Clear the stop event + self.prefetch_queue = queue.Queue(maxsize=PREFETCH_QUEUE_SIZE) # Reset the queue self.executor = ThreadPoolExecutor(max_workers=WORKER_THREADS) self.prefetch_task = self.executor.submit(self.prefetch_blocks) self.prefetch_queue_initialized = False @@ -113,6 +113,11 @@ def get_block(self): logger.trace("Fetching block with Rust backend.") block = self.get_prefetched_block() + if block is None: + # Fetcher has been stopped, handle accordingly + logger.debug("No block retrieved. Fetcher might have stopped.") + return None # Handle as appropriate for your application + # Handle potentially out-of-order blocks if block["height"] != self.next_height: logger.warning(f"Received block {block['height']} when expecting {self.next_height}") @@ -129,18 +134,20 @@ def get_block(self): def get_prefetched_block(self): try: logger.debug("Looking for block in prefetch queue...") - while len(self.prefetch_queue) == 0: - logger.trace("Prefetch queue is empty.") - time.sleep(0.1) - block = self.prefetch_queue.pop() - self.prefetch_queue_size -= 1 - logger.debug( - "Block %s retrieved from queue. (Queue: %s/%s)", - block["height"], - self.prefetch_queue_size, - PREFETCH_QUEUE_SIZE, - ) - return block + while not self.stopped_event.is_set(): + try: + block = self.prefetch_queue.get(timeout=1) + logger.debug( + "Block %s retrieved from queue. (Queue size: %s)", + block["height"], + self.prefetch_queue.qsize(), + ) + return block + except queue.Empty: + logger.debug("Prefetch queue is empty; waiting for blocks...") + # If stopped and queue is empty + logger.debug("Fetcher stopped and prefetch queue is empty.") + return None except Exception as e: logger.error(f"Error getting prefetched block: {e}") raise e @@ -148,45 +155,43 @@ def get_prefetched_block(self): def prefetch_blocks(self): logger.debug("Starting to prefetch blocks...") expected_height = self.next_height - while not self.stopped: - self.running = True + self.running = True + while not self.stopped_event.is_set(): try: - while self.prefetch_queue_size >= PREFETCH_QUEUE_SIZE and not self.stopped: - time.sleep(0.1) # Wait until there is space in the queue - if self.stopped: - break - self.lock.acquire() block = self.fetcher.get_block_non_blocking() if block is not None: - self.prefetch_queue.insert(0, block) - self.lock.release() - self.prefetch_queue_size += 1 - expected_height += 1 - logger.debug( - "Block %s prefetched. (Queue: %s/%s)", - block["height"], - self.prefetch_queue_size, - PREFETCH_QUEUE_SIZE, - ) - - # Mark the queue as "initialized" after it has been half-full at least once. - if ( - not self.prefetch_queue_initialized - and self.prefetch_queue_size >= PREFETCH_QUEUE_SIZE // 2 - ): - self.prefetch_queue_initialized = True - logger.debug("Prefetch queue initialized.") - + while not self.stopped_event.is_set(): + try: + self.prefetch_queue.put(block, timeout=1) + expected_height += 1 + logger.debug( + "Block %s prefetched. (Queue size: %s/%s)", + block["height"], + self.prefetch_queue.qsize(), + PREFETCH_QUEUE_SIZE, + ) + + # Mark the queue as "initialized" after it has been half-full at least once. + if ( + not self.prefetch_queue_initialized + and self.prefetch_queue.qsize() >= PREFETCH_QUEUE_SIZE // 2 + ): + self.prefetch_queue_initialized = True + logger.debug("Prefetch queue initialized.") + break # Break out of the inner loop after successfully putting the block + except queue.Full: + logger.debug("Prefetch queue is full; waiting...") + time.sleep(0.1) else: - self.lock.release() logger.debug("No block fetched. Waiting before next fetch.") - time.sleep(random.uniform(0.2, 0.7)) # noqa: S311 + # Use Event's wait method instead of time.sleep for better responsiveness + self.stopped_event.wait(timeout=random.uniform(0.2, 0.7)) # noqa: S311 except Exception as e: if str(e) == "Stopped error": logger.warning( "RSFetcher thread found stopped due to an error. Restarting in 5 seconds..." ) - time.sleep(5) + self.stopped_event.wait(timeout=5) self.restart() else: raise e @@ -195,17 +200,17 @@ def prefetch_blocks(self): def stop(self): logger.info("Stopping RSFetcher thread...") - self.stopped = True + self.stopped_event.set() # Signal all threads to stop try: if self.prefetch_task: - self.prefetch_task.cancel() - logger.debug("Prefetch task cancelled.") + # No need to cancel; threads should exit when they check the stop event + logger.debug("Waiting for prefetch task to finish...") if self.executor: self.executor.shutdown(wait=True) logger.debug("Executor shutdown complete.") if self.fetcher: self.fetcher.stop() - logger.debug("Prefetcher stopped.") + logger.debug("Fetcher stopped.") except Exception as e: logger.error(f"Error during stop: {e}") if str(e) != "Stopped error": diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 0fc3144398..9aedfc98dc 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -816,6 +816,15 @@ def handle_interrupt_signal(signum, frame): backend.addrindexrs.stop() log.shutdown() rsfetcher.stop() + + # Wait for all DB connections to close + open_connections = len(database.DBConnectionPool().connections) + while open_connections > 0: + logger.debug(f"Waiting for {open_connections} DB connections to close...") + time.sleep(0.1) + open_connections = len(database.DBConnectionPool().connections) # Update count + + # Now it's safe to check for WAL files try: database.check_wal_file(config.DATABASE) except exceptions.WALFileFoundError: @@ -827,13 +836,6 @@ def handle_interrupt_signal(signum, frame): "Database is in use by another process and was unable to be closed correctly." ) - # Wait for all DB connections to close - # Check the number of open DB connections - open_connections = len(database.DBConnectionPool().connections) - while open_connections > 0: - logger.debug(f"Waiting for {open_connections} DB connections to close...") - time.sleep(0.1) - logger.debug("Cleaning up WAL and SHM files...") api_db = database.get_db_connection(config.API_DATABASE, read_only=False, check_wal=False) api_db.close() @@ -1014,3 +1016,4 @@ def bootstrap_progress(blocknum, blocksize, totalsize): f"Databases have been successfully bootstrapped to {ledger_database_path} and {api_database_path}.", "green", ) + From 8e8cf8e744fba32ce43c006d8b463f3fef87cd6b Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Tue, 22 Oct 2024 22:55:15 -0400 Subject: [PATCH 37/71] Cleaner Telemetry Shutdown --- .../counterpartycore/lib/backend/rsfetcher.py | 2 +- .../counterpartycore/lib/telemetry/oneshot.py | 8 ++++++++ counterparty-core/counterpartycore/server.py | 7 ++++--- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 01fcdc2d05..b521ab5c1f 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -22,6 +22,7 @@ class RSFetcher(metaclass=util.SingletonMeta): thread_index_counter = 0 # Add a thread index counter def __init__(self, indexer_config=None): + logger.debug("Initializing RSFetcher...") RSFetcher.thread_index_counter += 1 if indexer_config is None: self.config = { @@ -227,7 +228,6 @@ def restart(self): time.sleep(0.1) self.start(self.next_height) - def stop(): if RSFetcher in RSFetcher._instances and RSFetcher._instances[RSFetcher] is not None: RSFetcher().stop() diff --git a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py index 09aab4f5f9..b7258d15a0 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py +++ b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py @@ -13,6 +13,7 @@ class TelemetryOneShot(metaclass=SingletonMeta): def __init__(self): + logger.debug("Initializing TelemetryOneShot") self.db = database.get_connection(read_only=True) self.collector = TelemetryCollectorInfluxDB(db=self.db) self.client = TelemetryClientInfluxDB() @@ -32,3 +33,10 @@ def close(self): self.collector.close() self.collector = None self.client = None + + @classmethod + def close_instance(cls): + instance = SingletonMeta._instances.get(cls) + if instance: + instance.close() + del SingletonMeta._instances[cls] diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 9aedfc98dc..7bc2880fed 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -810,17 +810,17 @@ def handle_interrupt_signal(signum, frame): if follower_daemon: follower_daemon.stop() if not config.NO_TELEMETRY: - TelemetryOneShot().close() + TelemetryOneShot.close_instance() if db: database.close(db) backend.addrindexrs.stop() log.shutdown() rsfetcher.stop() - # Wait for all DB connections to close + # Wait for any leftover DB connections to close open_connections = len(database.DBConnectionPool().connections) while open_connections > 0: - logger.debug(f"Waiting for {open_connections} DB connections to close...") + logger.warning(f"Waiting for {open_connections} DB connections to close...") time.sleep(0.1) open_connections = len(database.DBConnectionPool().connections) # Update count @@ -1017,3 +1017,4 @@ def bootstrap_progress(blocknum, blocksize, totalsize): "green", ) + From db494bf21802d52c040a3496487c2ca980f8db10 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Wed, 23 Oct 2024 00:08:10 -0400 Subject: [PATCH 38/71] Ruff --- .../counterpartycore/lib/api/api_server.py | 11 ++++++----- .../counterpartycore/lib/api/api_v1.py | 17 +++++++++-------- .../counterpartycore/lib/api/api_watcher.py | 5 +++-- .../0002.add_default_values_to_issuances.py | 3 ++- .../0004.create_address_events_table.py | 3 ++- .../counterpartycore/lib/api/queries.py | 5 +++-- .../counterpartycore/lib/api/util.py | 3 ++- .../counterpartycore/lib/api/wsgi.py | 7 ++++--- .../counterpartycore/lib/backend/rsfetcher.py | 11 ++++++++--- .../counterpartycore/lib/database.py | 2 +- counterparty-core/counterpartycore/lib/log.py | 2 +- .../lib/telemetry/clients/influxdb.py | 3 ++- .../counterpartycore/lib/telemetry/oneshot.py | 3 ++- .../counterpartycore/lib/telemetry/util.py | 1 + counterparty-core/counterpartycore/server.py | 2 -- .../counterpartycore/test/regtest/genapidoc.py | 1 + .../counterpartycore/test/regtest/regtestcli.py | 1 + 17 files changed, 48 insertions(+), 32 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index b9d893bfae..5a0c0bb968 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -10,6 +10,12 @@ import flask import requests from bitcoin.wallet import CBitcoinAddressError +from flask import Flask, request +from flask_httpauth import HTTPBasicAuth +from sentry_sdk import capture_exception +from sentry_sdk import configure_scope as configure_sentry_scope +from sentry_sdk import start_span as start_sentry_span + from counterpartycore import server from counterpartycore.lib import ( config, @@ -29,11 +35,6 @@ to_json, ) from counterpartycore.lib.database import APIDBConnectionPool -from flask import Flask, request -from flask_httpauth import HTTPBasicAuth -from sentry_sdk import capture_exception -from sentry_sdk import configure_scope as configure_sentry_scope -from sentry_sdk import start_span as start_sentry_span multiprocessing.set_start_method("spawn", force=True) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index ff021a2440..0881241d00 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -15,9 +15,17 @@ import threading import time -import counterpartycore.lib.sentry as sentry # noqa: F401 import flask import jsonrpc +from flask import request +from flask_httpauth import HTTPBasicAuth +from jsonrpc import dispatcher +from jsonrpc.exceptions import JSONRPCDispatchException +from sentry_sdk import configure_scope as configure_sentry_scope +from werkzeug.serving import make_server +from xmltodict import unparse as serialize_to_xml + +import counterpartycore.lib.sentry as sentry # noqa: F401 from counterpartycore.lib import ( backend, config, @@ -58,13 +66,6 @@ is_docker, is_force_enabled, ) -from flask import request -from flask_httpauth import HTTPBasicAuth -from jsonrpc import dispatcher -from jsonrpc.exceptions import JSONRPCDispatchException -from sentry_sdk import configure_scope as configure_sentry_scope -from werkzeug.serving import make_server -from xmltodict import unparse as serialize_to_xml D = decimal.Decimal diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index 92e88a856b..deccc7a1c3 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -6,11 +6,12 @@ from random import randrange import apsw +from yoyo import get_backend, read_migrations +from yoyo.exceptions import LockTimeout + from counterpartycore.lib import blocks, config, database, exceptions, ledger from counterpartycore.lib.api import util from counterpartycore.lib.util import format_duration -from yoyo import get_backend, read_migrations -from yoyo.exceptions import LockTimeout logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py b/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py index e2049e9a67..09b6d142aa 100644 --- a/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py +++ b/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py @@ -4,9 +4,10 @@ import logging import os -from counterpartycore.lib import config from yoyo import step +from counterpartycore.lib import config + logger = logging.getLogger(config.LOGGER_NAME) CURRENT_DIR = os.path.dirname(os.path.realpath(__file__)) diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py b/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py index a601a306be..df1ac86b15 100644 --- a/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py +++ b/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py @@ -4,9 +4,10 @@ import logging import os +from yoyo import step + from counterpartycore.lib import config from counterpartycore.lib.api.api_watcher import update_address_events -from yoyo import step logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 7e5892fec1..bcb1d1e819 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -2,11 +2,12 @@ import typing from typing import Literal -from counterpartycore.lib import config -from counterpartycore.lib.api.util import divide from flask import request from sentry_sdk import start_span as start_sentry_span +from counterpartycore.lib import config +from counterpartycore.lib.api.util import divide + OrderStatus = Literal["all", "open", "expired", "filled", "cancelled"] OrderMatchesStatus = Literal["all", "pending", "completed", "expired"] BetStatus = Literal["cancelled", "dropped", "expired", "filled", "open"] diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index 3a74be5d68..6081989051 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -11,6 +11,8 @@ import flask import requests import werkzeug +from docstring_parser import parse as parse_docstring + from counterpartycore.lib import ( backend, config, @@ -21,7 +23,6 @@ util, ) from counterpartycore.lib.api import compose -from docstring_parser import parse as parse_docstring D = decimal.Decimal logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index f2b5063a49..44445f5cb3 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -9,15 +9,16 @@ import gunicorn.app.base import waitress import waitress.server -from counterpartycore.lib import backend, config, ledger, log, util -from counterpartycore.lib.api.util import get_backend_height -from counterpartycore.lib.database import get_db_connection from flask import request from gunicorn import util as gunicorn_util from gunicorn.arbiter import Arbiter from gunicorn.errors import AppImportError from werkzeug.serving import make_server +from counterpartycore.lib import backend, config, ledger, log, util +from counterpartycore.lib.api.util import get_backend_height +from counterpartycore.lib.database import get_db_connection + multiprocessing.set_start_method("spawn", force=True) logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index b521ab5c1f..4bd0054610 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -2,10 +2,10 @@ import fcntl import logging import os +import queue import random import threading import time -import queue from concurrent.futures import ThreadPoolExecutor from counterparty_rs import indexer @@ -55,7 +55,9 @@ def __init__(self, indexer_config=None): def acquire_lockfile(self): # Ensure the directory exists os.makedirs(self.config["db_dir"], exist_ok=True) - logger.debug(f"RSFetcher - Ensured that directory {self.config['db_dir']} exists for lockfile.") + logger.debug( + f"RSFetcher - Ensured that directory {self.config['db_dir']} exists for lockfile." + ) try: fd = os.open(self.lockfile_path, os.O_CREAT | os.O_RDWR) @@ -64,7 +66,9 @@ def acquire_lockfile(self): logger.debug("RSFetcher - Lockfile acquired.") except IOError as e: if e.errno in (errno.EACCES, errno.EAGAIN): - logger.error(f"RSFetcher - Another instance is running. Unable to acquire lockfile: {e}") + logger.error( + f"RSFetcher - Another instance is running. Unable to acquire lockfile: {e}" + ) raise RuntimeError("Failed to acquire lockfile.") from e else: logger.error(f"RSFetcher - Unexpected error acquiring lockfile: {e}") @@ -228,6 +232,7 @@ def restart(self): time.sleep(0.1) self.start(self.next_height) + def stop(): if RSFetcher in RSFetcher._instances and RSFetcher._instances[RSFetcher] is not None: RSFetcher().stop() diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index d07ccbdcd6..5bfa8499ae 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -322,4 +322,4 @@ def table_exists(cursor, table): table_name = cursor.execute( f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table}'" # nosec B608 # noqa: S608 ).fetchone() - return table_name is not None \ No newline at end of file + return table_name is not None diff --git a/counterparty-core/counterpartycore/lib/log.py b/counterparty-core/counterpartycore/lib/log.py index e7cef8fe48..ff61bde4c1 100644 --- a/counterparty-core/counterpartycore/lib/log.py +++ b/counterparty-core/counterpartycore/lib/log.py @@ -1,11 +1,11 @@ import decimal import logging import sys +import threading import time import traceback from datetime import datetime from logging.handlers import RotatingFileHandler -import threading import zmq from dateutil.tz import tzlocal diff --git a/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py b/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py index 66329094f8..4f1424c0cb 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py +++ b/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py @@ -1,7 +1,8 @@ import influxdb_client +from influxdb_client.client.write_api import SYNCHRONOUS + from counterpartycore.lib import config from counterpartycore.lib.telemetry.util import ID -from influxdb_client.client.write_api import SYNCHRONOUS from .interface import TelemetryClientI diff --git a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py index b7258d15a0..5b7fcb9c22 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py +++ b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py @@ -1,12 +1,13 @@ import logging +from sentry_sdk import capture_exception + from counterpartycore.lib import config, database from counterpartycore.lib.telemetry.clients.influxdb import TelemetryClientInfluxDB from counterpartycore.lib.telemetry.collectors.influxdb import ( TelemetryCollectorInfluxDB, ) from counterpartycore.lib.util import SingletonMeta -from sentry_sdk import capture_exception logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/telemetry/util.py b/counterparty-core/counterpartycore/lib/telemetry/util.py index ee0c3dc6ee..ce3ff5c733 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/util.py +++ b/counterparty-core/counterpartycore/lib/telemetry/util.py @@ -4,6 +4,7 @@ from uuid import uuid4 import appdirs + from counterpartycore.lib import config start_time = time.time() diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 7bc2880fed..5861a68772 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -1016,5 +1016,3 @@ def bootstrap_progress(blocknum, blocksize, totalsize): f"Databases have been successfully bootstrapped to {ledger_database_path} and {api_database_path}.", "green", ) - - diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 7a1b7ce4db..5f771ebb28 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -6,6 +6,7 @@ import requests import sh import yaml + from counterpartycore.lib import database from counterpartycore.lib.api import routes diff --git a/counterparty-core/counterpartycore/test/regtest/regtestcli.py b/counterparty-core/counterpartycore/test/regtest/regtestcli.py index e4992b5166..0c67a4d2db 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestcli.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestcli.py @@ -3,6 +3,7 @@ import json import sh + from counterpartycore.lib import arc4 D = decimal.Decimal From 1566f88ecca19f9a82edb9854db62478a53f75a4 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 09:45:57 +0000 Subject: [PATCH 39/71] API fixes and tweaks --- apiary.apib | 3737 +++++++++-------- .../0014.add_index_to_ledger_hash.sql | 3 + .../counterpartycore/lib/api/queries.py | 92 +- .../counterpartycore/lib/api/routes.py | 2 + .../test/fixtures/api_v2_fixtures.json | 151 + .../test/regtest/apidoc/apicache.json | 3321 ++++++++------- .../test/regtest/genapidoc.py | 3 +- dredd.yml | 2 + release-notes/release-notes-v10.5.1.md | 6 + 9 files changed, 3885 insertions(+), 3432 deletions(-) create mode 100644 counterparty-core/counterpartycore/lib/api/migrations/0014.add_index_to_ledger_hash.sql diff --git a/apiary.apib b/apiary.apib index 6cc10dc4ef..dc2946df68 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-22 13:04:14.091746. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-23 09:42:51.836420. 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": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", "block_index": 196, - "block_time": 1729602237, + "block_time": 1729676554, "difficulty": 545259519, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107" + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327" }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", "block_index": 196, - "block_time": 1729602237, + "block_time": 1729676554, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "fee": 0, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a: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": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "out_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "block_time": 1729602237, + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "block_time": 1729676554, "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": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "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": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "memo": null, "quantity": 10000, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "status": "valid", - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", "tx_index": 55, - "block_time": 1729602202, + "block_time": 1729676520, "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": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", "block_index": 189, - "block_time": 1729602202 + "block_time": 1729676520 } ], "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": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "tx_index": 56, - "block_time": 1729602207, + "block_time": 1729676525, "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": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "block_time": 1729602207 + "block_time": 1729676525 } ], "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": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "status": "valid", - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "block_time": 1729602224 + "block_time": 1729676541 } ], "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": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "tx_index": 41, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "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": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "block_time": 1729602058 + "block_time": 1729676356 } ], "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": 1729602088 + "block_time": 1729676396 }, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "block_index": 161, - "block_time": 1729602088 + "block_time": 1729676396 } ], "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": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", "transfer": false, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "tx_index": 48, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "block_index": 161, - "block_time": 1729602088 + "block_time": 1729676396 } ], "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": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", "tag": "64657374726f79", - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "tx_index": 61, - "block_time": 1729602228, + "block_time": 1729676545, "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": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "block_index": 195, - "block_time": 1729602228 + "block_time": 1729676545 } ], "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": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "open", - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, - "block_time": 1729602219, + "block_time": 1729676536, "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": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 } ], "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": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "tx0_index": 51, - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx1_index": 54, - "block_time": 1729602198, + "block_time": 1729676506, "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": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "block_index": 188, - "block_time": 1729602198 + "block_time": 1729676506 } ], "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": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db" + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c" }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 } ], "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": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b" + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3" }, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_time": 1729602194 + "block_time": 1729676502 } ], "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": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "status": "completed" }, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_time": 1729602194 + "block_time": 1729676502 } ], "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": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "status": "valid", - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "tx_index": 53, - "block_time": 1729602194, + "block_time": 1729676502, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_time": 1729602194 + "block_time": 1729676502 } ], "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": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "tx_index": 58, - "block_time": 1729602215 + "block_time": 1729676532 }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 } ], "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": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "block_time": 1729602113 + "order_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "block_time": 1729676422 }, "tx_hash": null, "block_index": 184, - "block_time": 1729602113 + "block_time": 1729676422 } ], "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": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "block_time": 1729602113 + "order_match_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "block_time": 1729676422 }, "tx_hash": null, "block_index": 184, - "block_time": 1729602113 + "block_time": 1729676422 } ], "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": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "satoshirate": 1, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "tx_index": 33, - "block_time": 1729602023, + "block_time": 1729676321, "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": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "block_index": 146, - "block_time": 1729602023 + "block_time": 1729676321 } ], "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": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "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": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", + "destination": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", "dispense_quantity": 10, - "dispenser_tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "tx_hash": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", + "dispenser_tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx_hash": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", "tx_index": 31, - "block_time": 1729602015, + "block_time": 1729676313, "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": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", + "tx_hash": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", "block_index": 144, - "block_time": 1729602015 + "block_time": 1729676313 } ], "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": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "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": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "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": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "tx_index": 25, "value": 66600.0, - "block_time": 1729601990, + "block_time": 1729676278, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "block_index": 138, - "block_time": 1729601990 + "block_time": 1729676278 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "start_block": 0, "status": "open", - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "tx_index": 42, - "block_time": 1729602062, + "block_time": 1729676370, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "block_index": 155, - "block_time": 1729602062 + "block_time": 1729676370 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216" + "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b" }, "tx_hash": null, "block_index": 130, - "block_time": 1729601956 + "block_time": 1729676245 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "paid_quantity": 34, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "status": "valid", - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "block_index": 136, - "block_time": 1729601981 + "block_time": 1729676270 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "tx_index": 39, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "block_index": 152, - "block_time": 1729602049 + "block_time": 1729676347 } ], "next_cursor": 296, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", + "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", "status": "valid", - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "tx_index": 38, - "block_time": 1729602045, + "block_time": 1729676343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "block_index": 151, - "block_time": 1729602045 + "block_time": 1729676343 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "msg_index": 1, "quantity": 1500000000, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "status": "valid", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 555, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", + "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", "status": "valid", - "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", + "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", "tx_index": 9, - "block_time": 1729601918, + "block_time": 1729676208, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", + "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", "block_index": 121, - "block_time": 1729601918 + "block_time": 1729676208 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", "difficulty": 545259519, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", - "block_time": 1729602228, - "previous_block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", + "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_time": 1729676545, + "previous_block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", "difficulty": 545259519, - "ledger_hash": "5e641bd94b5742c5d23a62f7b8dcc9e24c7b488635d3f17823f3db0d54cf58a5", - "txlist_hash": "efe3e0fab00782d7e5df98f7ea91c90785ca938cb58537ed5e943a4a208a2ef9", - "messages_hash": "c10fdcf5d9ed8c8f5999b936c5dc57dda97737990c1e2ac3fc4c841323e8c01a", + "ledger_hash": "9dcfe7a47c2fb360eca9a969852773a92eb5d2328a23345228c403354af37d58", + "txlist_hash": "6ac7a3af202cec00be8c7cfa322e5e97f9077b483223528eda4c7e8d0296dc31", + "messages_hash": "5df8ba2ff2bd0457f3880a370b32eecdd9f820c4452a683cbc9f0949ab177108", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", - "block_time": 1729602224, - "previous_block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", + "block_time": 1729676541, + "previous_block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", "difficulty": 545259519, - "ledger_hash": "9793950b57a496010adc84f7a05d3b70530da75760fff8c15b65e6e42f019045", - "txlist_hash": "69682a702da947c430f207f5bea127bdbcb09f4335e384b47dea9d733a606deb", - "messages_hash": "ba2714ef233bf18d9733f7b97f1a1596c071fc81c71e8246dc3cbdd87bb31c84", + "ledger_hash": "398017b47f606f3af4e227c3aa64fbfd03eaf0cf158624b1e32e7d49f3e340e5", + "txlist_hash": "3cb1a0afed67ac326473a882776bdaca17ef79331404cf28167b2a56fa88bf9e", + "messages_hash": "e4439bd0b7b14dbafee2ef7a5ec521016d25c27a3baf03401b13bb0570d09e7a", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", - "block_time": 1729602219, - "previous_block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_time": 1729676536, + "previous_block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", "difficulty": 545259519, - "ledger_hash": "2c63fbbc09b4d3cc35ad80faeb9b7b6b8cb4676bcd9b300bcf86c1576fcc8416", - "txlist_hash": "38969dc42c309021c04c5020181b99552b3889af1543c9a435b47a6dee175e78", - "messages_hash": "77e75be3e6fecb2c027ed1dd3f6c7c054c70b1ca6e2f41b72b2a8f7b71b6fb2a", + "ledger_hash": "3cbb4062bbc678878b0ece16d25494730be1241a6a73aad4d849e33e29a8a23f", + "txlist_hash": "10dfdf6d781ecb009da71df3e63cb856426299120d035c5e3e9f5095c19b0fab", + "messages_hash": "b3abe98e60f148ec273bbc35053c4232381a565ef2e4aa4c1ff10508e0956db0", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", - "block_time": 1729602215, - "previous_block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", + "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_time": 1729676532, + "previous_block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", "difficulty": 545259519, - "ledger_hash": "53a652903930bb36aa93e893db14990956b7df3b4f5d7887571dcce7c731964a", - "txlist_hash": "0d4223380ddaa6b1b42296d71e411154a3464763b0c8a52e8fd3bdf729cbeaa5", - "messages_hash": "a80fc8473b7714026af7ac37936d01cc200232a0dd550687aa36f9b52b1bb278", + "ledger_hash": "ed83ed864ac6951beac860bebebb75d09e9e42c8add81f1c1bb438bef8c273fc", + "txlist_hash": "31bbc916b4ec2281e696dc3eeea7fb9721f62693801bd5fb4b19aedd71f6ca9d", + "messages_hash": "26ef1835d6506ff745e6aa6db046666020c84948d6819b1f66c3e3ade2789b90", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", "difficulty": 545259519, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa` (str, required) - The index of the block to return + + block_hash: `6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", "difficulty": 545259519, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 561, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 560, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" } ], "next_cursor": 558, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 557, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 554, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "object_id": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "block_index": 184, "confirmed": true, - "block_time": 1729602113 + "block_time": 1729676422 }, { "type": "order", - "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, "confirmed": true, - "block_time": 1729602113 + "block_time": 1729676422 }, { "type": "order_match", - "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "block_index": 184, "confirmed": true, - "block_time": 1729602113 + "block_time": 1729676422 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "status": "valid", "confirmed": true, - "block_time": 1729602215 + "block_time": 1729676532 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "block_index": 195, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729602228, + "block_time": 1729676545, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], @@ -2543,6 +2543,130 @@ Returns the sweeps of a block } ``` +### Get Fairminters By Block [GET /v2/blocks/{block_index}/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] + +Returns the fairminters by its block index + ++ Parameters + + block_index: `155` (int, required) - The block index of the fairminter to return + + status (enum[str], optional) - The status of the fairminters to return + + Default: `all` + + Members + + `all` + + `open` + + `closed` + + `pending` + + cursor (str, optional) - The last index of the fairminter to return + + Default: `None` + + limit: `5` (int, optional) - The maximum number of fairminter to return + + Default: `100` + + offset (int, optional) - The number of lines to skip before + + Default: `None` + + 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": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1729676370, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + } + ``` + +### Get Fairmints By Block [GET /v2/blocks/{block_index}/fairmints{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] + +Returns the fairmints by its block index + ++ Parameters + + block_index: `136` (int, required) - The block index of the fairmint to return + + 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": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729676270, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + ], + "next_cursor": null, + "result_count": 1 + } + ``` + ## Group Transactions There are 12 types of transactions: @@ -2568,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "block_index": 138, - "block_hash": "1a2bafcf6ed0a0f2d927ce5ecca2a825bdacae04d6a4767d3289bdd2adab566e", - "block_time": 1729601990, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "2ab8ddd64271b87ed253bc483db1397113c4145ac8b86384b53f6a939c1ab8fa", + "block_time": 1729676278, + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb:1", + "utxos_info": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2603,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_hash": "68661f1299e623ecf2ed1209495013b7f01bab0631c0a658d57d11700e354d5e", - "block_time": 1729602194, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "2e8fa43b31410e6856113665bac1c83985e16b3a8a748c12dd18eb51a2d209cb", + "block_time": 1729676502, + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "btc_amount": 2000, "fee": 10000, - "data": "0b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd28dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "data": "0bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "supported": true, - "utxos_info": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e:0", + "utxos_info": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "status": "valid" } }, @@ -2636,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", - "block_time": 1729602215, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_time": 1729676532, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "supported": true, - "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", + "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "status": "valid" } }, @@ -2667,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "block_index": 195, - "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", - "block_time": 1729602228, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_time": 1729676545, + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc:1", + "utxos_info": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2707,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "block_index": 146, - "block_hash": "44f86da007e53e3d38f848b16a0f3c0d2f8e07ea35f7636276d87c5b90bb542a", - "block_time": 1729602023, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "1d8c0b2549ff871ec3b7cf4cb1a3a69524e2e69c1a524131bfb6f67f78f2df3c", + "block_time": 1729676321, + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c0000000000000001000000000000000100000000000027100000000000000001008092b5051f546edf56f17f264039d77d86944357d2", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100801a4276a941acf906f7f9539bb10d51d26ee94e40", "supported": true, - "utxos_info": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc:1", + "utxos_info": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2729,7 +2853,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": "valid", "asset_info": { "divisible": true, @@ -2753,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2783,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "block_hash": "03e1f91f953c15ae8774739673483227404c83f3b4b82c067ff482561533b438", - "block_time": 1729602058, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "763b565c90f10299464411af203518b92cd64af9ee19948703cbd893cce7322b", + "block_time": 1729676356, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18:1", + "utxos_info": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2806,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2831,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "block_index": 161, - "block_hash": "4d9964ea18748f9aba15757131877060215d1f66396b71e9311d6903446d0dfa", - "block_time": 1729602088, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "69de4c1dd2251d21970813cafe073b3643ba8e4c7e16d44528cb6b59164bd499", + "block_time": 1729676396, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d:1", + "utxos_info": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2873,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", - "block_time": 1729602219, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_time": 1729676536, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", + "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -2926,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", "block_index": 189, - "block_hash": "151bca5d6042885cdeb2903973b5ee8246b6a6da61f1b05f1e7b47d90d1bea61", - "block_time": 1729602202, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "block_hash": "398106a907b4611e76de11db42120f856dad6f632952313839f539c0e66f51cd", + "block_time": 1729676520, + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080eddb83e7d0005a90f0f03950a23b9675325ea37c", + "data": "020000000000000001000000000000271080389cf1fc21f030356a2b4839e8cb66dc9bd69abb", "supported": true, - "utxos_info": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f:1", + "utxos_info": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -2944,7 +3068,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "memo": null, "asset_info": { "divisible": true, @@ -2967,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", - "block_time": 1729602207, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", + "block_time": 1729676525, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", + "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -2985,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -3000,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3026,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", - "block_time": 1729602224, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", + "block_time": 1729676541, + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480eddb83e7d0005a90f0f03950a23b9675325ea37c017377656570206d7920617373657473", + "data": "0480389cf1fc21f030356a2b4839e8cb66dc9bd69abb017377656570206d7920617373657473", "supported": true, - "utxos_info": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7:1", + "utxos_info": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "memo": "sweep my assets" } @@ -3075,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3098,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "block_index": 195, - "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", - "block_time": 1729602228, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_time": 1729676545, + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc:1", + "utxos_info": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3140,7 +3264,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03014300ffffffff0200f2052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f170000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03014200ffffffff0200f2052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe400000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (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. @@ -3166,7 +3290,7 @@ Returns Counterparty information from a raw transaction in hex format. { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "014300", + "script_sig": "014200", "sequence": 4294967295, "coinbase": true } @@ -3174,7 +3298,7 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 5000000000, - "script_pub_key": "0014ac259a46ca7b25183c056dd8cd8af381d44a2f17" + "script_pub_key": "0014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40" }, { "value": 0, @@ -3185,8 +3309,8 @@ Returns Counterparty information from a raw transaction in hex format. "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e", - "tx_id": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e" + "tx_hash": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe", + "tx_id": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe" } } } @@ -3197,7 +3321,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c` (str, required) - Transaction hash + + tx_hash: `0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff` (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. @@ -3208,18 +3332,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "808ebf21eb43f3966393d863914f83ac21e0771f465b3f8019f288326d01922a", + "hash": "55c67f194fd4987d50f9414a51e3d352d06746d21fd60d54124e2e93d3c6e5f8", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3229,20 +3353,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2edba97a08c291984bc2696c4bad0621d2c539ed154f42323db37ff3874edda0307d13d6e7118b61073ee57cc3ac43" + "script_pub_key": "6a2efb55cf9708665e83703ddaf6990bae645d7df6d910369af9ec09cee0ce82efedc199e1e27411b421e1c6dff2caa0" }, { "value": 4999955000, - "script_pub_key": "0014eddb83e7d0005a90f0f03950a23b9675325ea37c" + "script_pub_key": "0014389cf1fc21f030356a2b4839e8cb66dc9bd69abb" } ], "vtxinwit": [ - "3044022066154309fabb70c77ce0733c25808f035de015e692f0d94e42b7a7d446d56a2e02200e2d82f11584977cfda5e611503ebd3e5f436872db8aed823e263c2f04cdc67d01", - "03ab0c4957149f74cffa275ca102e3ed301502bcd2086ca6a7e5283755c86100e7" + "3044022073f2e04ac9876ade564fb6688b56c4e326b933e06e68b2134a23b89eac3993fa02201604e88618738b36cf449e53d0a4457fea6fdc69867431aaceef1be3b839024801", + "02ffb386606fe3569f0bd57b21acea3bb5debb97764165fcaba274dc4f81cdf82f" ], "lock_time": 0, - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", - "tx_id": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c" + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_id": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3250,7 +3374,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -3311,17 +3435,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3340,7 +3464,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (str, required) - The hash of the transaction + + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (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. @@ -3352,17 +3476,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3405,12 +3529,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 561, @@ -3419,14 +3543,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3437,9 +3561,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 560, @@ -3448,9 +3572,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -3460,24 +3584,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3487,9 +3611,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 558, @@ -3497,14 +3621,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "msg_index": 1, "quantity": 1500000000, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "status": "valid", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3514,9 +3638,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 557, @@ -3529,7 +3653,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (str, required) - The hash of the transaction to return + + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (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 @@ -3553,12 +3677,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 561, @@ -3567,14 +3691,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3585,9 +3709,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 560, @@ -3596,9 +3720,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -3608,24 +3732,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3635,9 +3759,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 558, @@ -3645,14 +3769,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "msg_index": 1, "quantity": 1500000000, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "status": "valid", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3662,9 +3786,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 557, @@ -3677,7 +3801,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (str, required) - The hash of the transaction to return + + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (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 @@ -3696,10 +3820,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3707,7 +3831,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3720,10 +3844,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3731,11 +3855,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -3753,7 +3877,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (str, required) - The hash of the transaction to return + + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (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 @@ -3773,27 +3897,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3808,7 +3932,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3852,16 +3976,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3871,9 +3995,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 557, @@ -3883,12 +4007,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3898,9 +4022,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 554, @@ -3910,24 +4034,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": null, @@ -3940,7 +4064,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (str, required) - The hash of the transaction to return + + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (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` @@ -3962,16 +4086,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -3981,9 +4105,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 557, @@ -3993,12 +4117,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -4008,9 +4132,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 554, @@ -4020,24 +4144,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": null, @@ -4052,7 +4176,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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 @@ -4076,7 +4200,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4086,7 +4210,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4097,7 +4221,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4107,7 +4231,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4118,7 +4242,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4128,7 +4252,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4139,7 +4263,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4149,7 +4273,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4160,7 +4284,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4170,7 +4294,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4187,7 +4311,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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 @@ -4206,17 +4330,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", - "block_time": 1729602219, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_time": 1729676536, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", + "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4252,23 +4376,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", - "block_time": 1729602215, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_time": 1729676532, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "supported": true, - "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", + "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "status": "valid" } }, @@ -4276,17 +4400,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 191, - "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", - "block_time": 1729602211, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", + "block_time": 1729676529, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", + "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4322,17 +4446,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", - "block_time": 1729602207, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", + "block_time": 1729676525, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", + "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4340,14 +4464,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4355,7 +4479,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4374,25 +4498,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_hash": "68661f1299e623ecf2ed1209495013b7f01bab0631c0a658d57d11700e354d5e", - "block_time": 1729602194, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "2e8fa43b31410e6856113665bac1c83985e16b3a8a748c12dd18eb51a2d209cb", + "block_time": 1729676502, + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "btc_amount": 2000, "fee": 10000, - "data": "0b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd28dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "data": "0bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "supported": true, - "utxos_info": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e:0", + "utxos_info": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "status": "valid" } }, @@ -4409,7 +4533,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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 @@ -4445,11 +4569,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "open", - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4473,24 +4597,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "block_index": 193, - "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729602219, + "block_time": 1729676536, "asset_info": { "divisible": true, "asset_longname": null, @@ -4500,25 +4624,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", "block_index": 193, - "block_time": 1729602219, + "block_time": 1729676536, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, - "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", + "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4550,40 +4674,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "tx_index": 58, - "block_time": 1729602215 + "block_time": 1729676532 }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729602215, + "block_time": 1729676532, "asset_info": { "divisible": true, "asset_longname": null, @@ -4593,9 +4717,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 } ], "next_cursor": 520, @@ -4608,7 +4732,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut,bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d,bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh` (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 @@ -4624,17 +4748,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "quantity": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, "asset_info": { "divisible": true, @@ -4645,22 +4769,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -4670,22 +4794,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 196, - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -4695,30 +4819,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729602242.0374818, + "block_time": 1729676559.013981, "btc_amount": 0, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "destination": "", "fee": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, - "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", + "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -4732,7 +4856,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, @@ -4745,7 +4869,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -4765,7 +4889,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4773,14 +4897,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4788,14 +4912,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4810,7 +4934,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4818,7 +4942,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4835,7 +4959,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -4848,7 +4972,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4873,7 +4997,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4923,16 +5047,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "asset_info": { "divisible": true, "asset_longname": null, @@ -4944,16 +5068,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "event": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "asset_info": { "divisible": true, "asset_longname": null, @@ -4965,20 +5089,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "event": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4986,20 +5110,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", + "event": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602075, + "block_time": 1729676383, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5011,16 +5135,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "event": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "tx_index": 39, - "utxo": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", - "utxo_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "utxo": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "utxo_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "confirmed": true, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5037,7 +5161,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5076,16 +5200,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "asset_info": { "divisible": true, "asset_longname": null, @@ -5097,16 +5221,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602211, + "block_time": 1729676529, "asset_info": { "divisible": true, "asset_longname": null, @@ -5118,16 +5242,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -5139,20 +5263,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5160,16 +5284,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "event": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602185, + "block_time": 1729676493, "asset_info": { "divisible": true, "asset_longname": null, @@ -5190,7 +5314,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address of the feed + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5225,7 +5349,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -5244,9 +5368,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", + "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", "block_index": 137, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5254,7 +5378,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601986, + "block_time": 1729676274, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5268,7 +5392,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -5287,14 +5411,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "c517af74238fda6b2de028daa66be74f42674351f2feffb4031b31e29c04b838", + "tx_hash": "b1787afd89597b03aa5b015b1c2ef508d2593f14f453f9c8c865b51422388834", "block_index": 112, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729601881, + "block_time": 1729676171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5309,7 +5433,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -5328,10 +5452,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5339,7 +5463,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -5352,10 +5476,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5363,11 +5487,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5376,10 +5500,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5387,11 +5511,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5400,10 +5524,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "block_index": 152, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5411,11 +5535,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5424,10 +5548,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", + "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", "block_index": 149, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5435,11 +5559,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602036, + "block_time": 1729676334, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5457,7 +5581,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p` (str, required) - The address to return + + address: `bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76` (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 @@ -5476,10 +5600,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "block_index": 151, - "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", - "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", + "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5487,11 +5611,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602045, + "block_time": 1729676343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5509,7 +5633,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -5529,10 +5653,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5540,11 +5664,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5553,10 +5677,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5564,11 +5688,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5577,10 +5701,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "block_index": 152, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5588,11 +5712,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5601,10 +5725,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", + "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", "block_index": 149, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5612,11 +5736,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602036, + "block_time": 1729676334, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5634,7 +5758,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p` (str, required) - The address to return + + address: `bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76` (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` @@ -5654,10 +5778,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "block_index": 151, - "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", - "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", + "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5665,11 +5789,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602045, + "block_time": 1729676343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5687,7 +5811,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5716,9 +5840,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5727,7 +5851,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5737,7 +5861,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -5762,7 +5886,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -5775,9 +5899,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5786,7 +5910,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5796,7 +5920,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -5818,7 +5942,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -5838,19 +5962,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5858,7 +5982,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5873,7 +5997,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -5887,19 +6011,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5907,7 +6031,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5922,7 +6046,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -5944,7 +6068,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address to return + + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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 @@ -5964,19 +6088,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5984,7 +6108,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5999,7 +6123,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -6013,19 +6137,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6033,7 +6157,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6048,7 +6172,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -6070,7 +6194,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -6091,19 +6215,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6111,7 +6235,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6126,7 +6250,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -6140,19 +6264,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6160,7 +6284,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6175,7 +6299,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -6197,7 +6321,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address to return + + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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` @@ -6218,19 +6342,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6238,7 +6362,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6253,7 +6377,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -6267,19 +6391,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6287,7 +6411,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6302,7 +6426,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -6324,7 +6448,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut` (str, required) - The address to return + + address: `bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d` (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 @@ -6343,16 +6467,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], @@ -6366,7 +6490,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -6385,14 +6509,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -6407,20 +6531,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", + "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -6435,20 +6559,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729602084, + "block_time": 1729676392, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", + "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -6463,20 +6587,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602080, + "block_time": 1729676388, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", + "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -6491,20 +6615,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602075, + "block_time": 1729676383, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -6519,7 +6643,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729602062, + "block_time": 1729676370, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6534,7 +6658,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The issuer or owner to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -6557,8 +6681,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -6566,16 +6690,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": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -6583,16 +6707,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": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -6600,16 +6724,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": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -6617,16 +6741,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": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -6634,8 +6758,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": 1729601940, - "last_issuance_block_time": 1729601956, + "first_issuance_block_time": 1729676228, + "last_issuance_block_time": 1729676245, "supply_normalized": "0.00000000" } ], @@ -6649,7 +6773,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The issuer to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -6672,8 +6796,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -6681,16 +6805,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": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -6698,16 +6822,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": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -6715,16 +6839,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": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -6732,16 +6856,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": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -6749,8 +6873,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": 1729601940, - "last_issuance_block_time": 1729601956, + "first_issuance_block_time": 1729676228, + "last_issuance_block_time": 1729676245, "supply_normalized": "0.00000000" } ], @@ -6764,7 +6888,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The owner to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -6787,8 +6911,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -6796,16 +6920,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": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -6813,16 +6937,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": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -6830,16 +6954,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": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -6847,16 +6971,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": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -6864,8 +6988,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": 1729601940, - "last_issuance_block_time": 1729601956, + "first_issuance_block_time": 1729676228, + "last_issuance_block_time": 1729676245, "supply_normalized": "0.00000000" } ], @@ -6879,7 +7003,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -6898,17 +7022,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", - "block_time": 1729602219, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_time": 1729676536, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", + "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -6944,23 +7068,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", - "block_time": 1729602215, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_time": 1729676532, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "supported": true, - "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", + "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "status": "valid" } }, @@ -6968,17 +7092,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 191, - "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", - "block_time": 1729602211, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", + "block_time": 1729676529, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", + "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7014,17 +7138,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", - "block_time": 1729602207, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", + "block_time": 1729676525, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", + "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7032,14 +7156,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7047,7 +7171,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7066,17 +7190,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 185, - "block_hash": "5e44846d5adef2e033681729f97aadd0b7b0103716d315468d14e990e6580b69", - "block_time": 1729602185, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "4678438d531d366bd7f01f6ede3df70e9db91dc424373fca2f438a3df4a362e3", + "block_time": 1729676493, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2:1", + "utxos_info": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7121,7 +7245,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -7140,20 +7264,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7178,7 +7302,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7207,9 +7331,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7224,7 +7348,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7250,9 +7374,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7267,7 +7391,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7293,9 +7417,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7310,7 +7434,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7336,9 +7460,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7353,7 +7477,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7383,12 +7507,19 @@ Returns the orders of an address } ``` -### Get Fairminters By Address [GET /v2/addresses/{address}/fairminters{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Fairminters By Address [GET /v2/addresses/{address}/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns the fairminter by its source + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The source of the fairminter to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The source of the fairminter to return + + status (enum[str], optional) - The status of the fairminters to return + + Default: `all` + + Members + + `all` + + `open` + + `closed` + + `pending` + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7406,10 +7537,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7434,7 +7565,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729602062, + "block_time": 1729676370, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7443,10 +7574,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7471,7 +7602,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729601977, + "block_time": 1729676266, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7483,10 +7614,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7511,7 +7642,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729601960, + "block_time": 1729676249, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7523,10 +7654,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7551,7 +7682,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729601956, + "block_time": 1729676245, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7563,10 +7694,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7591,7 +7722,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7613,7 +7744,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address of the mints to return + + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7631,22 +7762,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7655,22 +7786,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", + "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601973, + "block_time": 1729676262, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7679,22 +7810,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", + "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601969, + "block_time": 1729676258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7703,22 +7834,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", + "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601964, + "block_time": 1729676253, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7727,22 +7858,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "1b4e9f9ff7be0393355aec7e38bdd23b47bbf42a5a0290bc14c43551890db392", + "tx_hash": "e83cd173d758ac4ea36a12f4f880822982c60251e411b0aa9148cfd9a326e9e3", "tx_index": 15, "block_index": 127, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601944, + "block_time": 1729676232, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7751,22 +7882,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7785,7 +7916,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address of the mints to return + + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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` @@ -7804,22 +7935,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7861,8 +7992,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will make the bet - + feed_address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will make the bet + + feed_address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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) @@ -7930,7 +8061,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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) @@ -7986,7 +8117,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -7998,7 +8129,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "0200000000010108ffbd840f67c6edf401c49c9c82438eda1917743609167a889eb63afc727f0e00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2963059221f1b8824ace1e3873dc651f88455364598fab2597e6ccf3f4b9a44c70d4e432039c4399f0909bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "0200000000010162c45bad425beecec12cc2a9ca4f5315c387826145d6a45546a01d1886ba352900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a2990a72937e70bc5f113ac3827a6a5294ca19212d92d2c07d7df826d17fd73b91af39bfeea8f7b8785939bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8020,8 +8151,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending the payment - + order_match_id: `0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3` (str, required) - The ID of the order match to pay for + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending the payment + + order_match_id: `f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a` (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) @@ -8073,23 +8204,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" }, "name": "btcpay", - "data": "434e5452505254590b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd22d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "data": "434e5452505254590bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101a782f0234bce03c0b11158e191cc0d0433babee0109ae84bdeb3aba252c8675600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03b80b000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1700000000000000004b6a498288789f515d1bb5032dd32111fe168e2433ebcc6950efa1442e193f8f41f5345d61f5b9a258fe6e511a04a5bfad54936e6224751260379cc67d3734eb3e48eda2ecc68ddea1cb2e72c79f052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101ca3dd74955b50643f446e9909bc5b1a3ab0c2c218c5d49d455f48ce793beb7dc00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03b80b000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4000000000000000004b6a49dc1ccaa3c1c37cc2902315bb927e3c7c038cd76ab599298df6b167e755138f5a62fec320b353f317a4f0a7c7bec679e31a6d0d88d56c3f7c63b68ceebf8cba94342880071d1e70d5bcc79f052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "status": "valid" } } @@ -8102,7 +8233,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address with the BTC to burn + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -8157,7 +8288,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "quantity": 1000, "overburn": false }, @@ -8167,7 +8298,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": "020000000001014ef3d4404221ab9315fb6c5444cf82bb583ecfb084251ef97ca34edbae16c6cb00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000" + "rawtransaction": "020000000001013db53be4a3eae0e006d8b354dfdfe36144be6a9934e8c97524ba1c2e5b1b3ea400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000" } } ``` @@ -8177,8 +8308,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2` (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) @@ -8230,21 +8361,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09" + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2" }, "name": "cancel", - "data": "434e545250525459467630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "data": "434e54525052545946b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001017fe0437e945dcc564c73eb51bee85d7d782dd0eddb133550e6dca9ea2bdfd71300000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2905d0b3d189f0b731bfedd052237bb8b82c81d17f9a2b31225aa9a6769101db8e9094a56d3669432c799bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101bbf641b3e888f7a4d43b98e4c5af4c1d9e6927cae72f2f3630b728fa96d4a02c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a29f496f21b1eca393d02cf8b23e78c4d3ff109484e9959d0cb642bc43144a8b12e30fc983ad9a8117e2a9bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "status": "valid" } } @@ -8257,7 +8388,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -8312,7 +8443,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8331,7 +8462,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101d24176d35d15c0c64fd0a2bea51dfbc9d60ca2b26cf261aeb7767013cef1e66200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000226a2018ce351b3a2d666577ed418ef24798859b5f3ef30990199f9c781f87f70a67eaaabc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "0200000000010149e5b9dc0e1cff0a9103562ecc167474fc106f2bbbbde6fc324aacde2bfd123300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000226a20f28eb2bac2653a8f699370fa1805ae1242189b83557b0f9fd5b8bb768839520faabc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8351,7 +8482,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: `bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95` (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) @@ -8412,7 +8543,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8436,7 +8567,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": "0200000000010154660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb02000000160014fb134d3d7db65283c8a6d438f34c982c5f90936fffffffff0200000000000000002c6a2a549b3501ee943fd845cb0c32042fd8b35c7a2feb92ed8865841b0d97db283ba5753f0e78b422acc675deb0540a2701000000160014fb134d3d7db65283c8a6d438f34c982c5f90936f02000000000000", + "rawtransaction": "020000000001015685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e0200000016001486c9fb8df4e113364217345a534ec15df1190f17ffffffff0200000000000000002c6a2a1935d51ef9e5b27c0e1451de25963157772aea1b5905cdbcfdb18d3764b6e62b7dcaae924832cb73e9e9b0540a270100000016001486c9fb8df4e113364217345a534ec15df1190f1702000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8462,7 +8593,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -8517,14 +8648,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -8543,7 +8674,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101d8c4c7ca24ecc925dfff6352da967b9326c03eb1906ab886919bded2abe7645000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a21826287520ae74b4395832fb5f75c8aa1f94f8a58242f3b1a0f9726295a33ecdcfe6fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101872c6c3ec6138433f8c1378244c8558aef4f8533b1e08a697773a8c4364bf85100000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a21e9bbed14b458a585a162116b2ae9500f830a103a11f465cf4c8d642ef4b400657d6fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8564,10 +8695,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -8628,10 +8759,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "transfer_destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "lock": false, "reset": false, @@ -8644,7 +8775,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": "02000000000101ce38cdd53573bedc5bb1f948419d3953a9654114eee982a68de762c873b0c36100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff032202000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f170000000000000000236a2196fbac094f71586091ed88706db05cd6050bb5c6283bddbd6ea1812f34408d15f185b2052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101fda9079f396d38513093ada76ea35a408817499a7377d1d08cb8972097d11f3900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff032202000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe400000000000000000236a21733dfb10f894efc1be24aef7868cefb96bd548b065b903aa9a586304cb505bb81b85b2052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8673,9 +8804,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws,bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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` @@ -8732,16 +8863,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", 1 ], [ "MYASSETA", - "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", 2 ] ], @@ -8749,26 +8880,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280ac259a46ca7b25183c056dd8cd8af381d44a2f178038fec635c374c266372b6968b0a02a296ddd4ed78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280a93fd6c7f82cb65d01526fb0bd722052b7bbbe4080a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a08f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001049cd344441140c46f917f15ba952bac7f8227a94f3a4282d0fa2476ab222c1a8c00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffbe4a736276a43a4b7abbb7fe913a3c8bc38e7aa16d8a669156061057d292b07800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc648578dee845a752850522212788f7c351bdcacf276d26ae90d11d14e51dfcf00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffee5f3b21ba6dd74da11f4c89159f2f25d0ce6c0d8ac2e88b7ac7379f6664540600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03e80300000000000069512102c3ab41cae66da68f202687d09adb3f7ca89bf217704cae6966149734e6ae84e121023262b4cece3529d5e634e59ad8c971a96047e28befd36c4057219173159a2eac2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee80300000000000069512102ccab41cae66da68f2005f0bd681b7ec7ccd189326465308f09f91dc7677ace8c21031d757cf630f31c1692f68badf3a01919c06dc9e6329dbbcf7569f41f79f5021f2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353ae14f316a804000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000000000000", + "rawtransaction": "020000000001047b7bfe587dcda93d9713fc88e04d24cbf97873e426fdcc402408aaa6bf01a52800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff11619d5e7f43b77a607e930f61da33d275dff38e60b723867751a58e82bc623c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff7be57b1008cd09b99f2ca24a82345ec77645d3baebb3e96cd23e8f5838b994000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff05978b3a4b921825331be01454a7376625376e9a91ffdc2fb3a927ba1b56ba800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03e803000000000000695121020f57dca4a9f74e84dec2301613495740c79f8d4fb56c80769294f63918b130432103cf6056ec0e32494c87278e8e06efa5da2234f0c4e01fd22d9ff1cb5e722d05b22102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee803000000000000695121030057dca4a9f74e84dee1477be18c0cb722e7a1f9e4784992950984194a068bf2210271209e48c3cb5cb91b9865c57e07513d4e72395e14eb72a2bdb9ae321e42291f2102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53ae14f316a804000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8784,7 +8915,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -8842,7 +8973,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8859,7 +8990,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -8873,7 +9004,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101d2a317377493a48aba4c05a001333e1d2fa9f4818e2481c011f1d5f5c5a03f5900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000356a33e3b5d6136200359688929a3110401601a0ddcb814d2760f4651a79e959e2b835da038ea7599ab30e3bf782bb04419e73be1ea251b8052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101433eadc0edf5b7cefd578f11554272bbf42a644362d61d5fe5465987d42676cf00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000356a33a4ef143202f486cceb19adbd0e85012db02ed34f788f304fdbc0fe5755e7d4862eddd9d960acdbab2f3892347abc7f7638808e51b8052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -8899,8 +9030,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address that will be receiving the asset + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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 @@ -8960,8 +9091,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 1000, "memo": null, @@ -8977,19 +9108,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88038fec635c374c266372b6968b0a02a296ddd4ed7", + "data": "434e54525052545902000000000000000100000000000003e880a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101d91b95e2af0e759026b39536b8d83d628e9314271eea6860dfa956b7a6b6282900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000306a2e2950d4e1fc0dd540d5f278dec7b04e96a99861303add9ea4a945ba9ee2a2583a20883d365c670414057492c85f9a76b9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "0200000000010117bf3b309d9630bf3f0e84fe559eacc8d5a6e32aef85b15075b6ed0ea0d6155300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000306a2e89b60557a071ae01fdb862ec619dec6f0d106b4ce192f645d9ae12b825de732a8bed2d297c5ba3d107326569cf2176b9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "memo": null, "quantity_normalized": "0.00001000" } @@ -9003,8 +9134,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be sending - + destination: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending + + destination: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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 @@ -9058,23 +9189,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e545250525459048038fec635c374c266372b6968b0a02a296ddd4ed707ffff", + "data": "434e5452505254590480a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a007ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001017786d3501ed9ef5b4ca6dc705e8c039f80ccb211135ab9bbc9923e98078534e700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a2184674740b5b0f99d218985f45e23d863809271cb8600aacece0008ea137f7911046fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101d60c2d0ddc9e26befe48be5c6e24bfd12c71cc34abbc86563f37dff3af69984000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a218b3a953d59e8907878471f7b425d69856b99c4ba2238bda2718f46b18e5b171b716fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "flags": 7, "memo": "ffff" } @@ -9088,8 +9219,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: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh` (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` @@ -9142,8 +9273,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "quantity": 1000 }, "name": "dispense", @@ -9152,7 +9283,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "020000000001019e4b2fbf2d349f6c6c57054e5de72e0b4c780ef93523945f88f43aed10db23240200000016001438fec635c374c266372b6968b0a02a296ddd4ed7ffffffff03e803000000000000160014eddb83e7d0005a90f0f03950a23b9675325ea37c00000000000000000c6a0a0ae4e55812233125b6bee3c108270100000016001438fec635c374c266372b6968b0a02a296ddd4ed702000000000000", + "rawtransaction": "02000000000101a3bfca2ebb0faa9c14138ee50bf6e214917fdbf925174732500b08939a753ec502000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0ffffffff03e803000000000000160014389cf1fc21f030356a2b4839e8cb66dc9bd69abb00000000000000000c6a0a4042de1bdd819cf3ab7ae3c1082701000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9169,7 +9300,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be issuing the asset + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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: `` @@ -9254,7 +9385,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9285,7 +9416,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001016a3a6d618c3ead34bc319dc018f0d051586f2e259fa42660f2bc7a6a066a286700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000316a2fdec4b9ede8f883ab4ee822133ca3b693166b1f24bd104d4e823e0a8af0a21ddc301b3b2848e0bdd8a066823ef125503bb9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101d5c1ee92578cdbdcf9dd649b183ea3f7f6b5ab1cf3df5e8edb923c1f5ce5569400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000316a2f5cd4db22bff2776492381cc77cb6f615b6c51adba1bebeec7aa599d8a8157c82815cb055f6cb32aec4849c1e84289a3bb9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9318,7 +9449,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address that will be minting the asset + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -9373,13 +9504,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9391,7 +9522,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": "02000000000101dd111d12df8c39285b8ace3682a283cf4874caaab255e9a14da8804dc497abc200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000166a1443cd9b301bc366950c02348363c7b1ad53163ee269bf052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "020000000001011dea0fc0b53aa42dd0ca9b92139b3e2a5116b14a15695b2fab8d485df396eaef00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000166a14a5fabf63183d92aecc01fa0aac4bc21bd4ba271f69bf052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9409,10 +9540,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: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address from which the assets are attached + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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: `8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e:0` (str, optional) - The utxo to attach the assets to + + destination: `d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9465,8 +9596,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e:0", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9479,12 +9610,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c386333326135633161353539656564303833623338343033333933376530636563306539363763353663313437393634393765313763343136313239396530653a307c5843507c31303030", + "data": "434e5452505254596462637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c643833643931643963316264323237373666396664323234383632383032313766366561613531376534353965643635656139346333396134333630333066653a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106f5a2b62967bd65039d97d29bd3a94877b0b0de59b32025147b5f6c5e8132e7b800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffe1995dc3a8191a0505ef3ac97b883bbb25629eb48b31dbf439592003d1ecc52f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff7e06a3147b917a4999361e47a49460876a4258e7cb7363858b68b76af222324f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffdc8453ed5e287bf6546e839890aea7f94e330af8cf7df3f44e438ee9ee0a8df500000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffedbfb9e4bb42eb01119d8d42ba4a03458f689ee821a27881f1f31f7a229c8d9100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc206e3af5eae8c71f82f37241ca041a4f91a68d1ac2b03ceb422b4ecefe7279100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff04e803000000000000695121034eadd003803ba7735e862367431591400f1d4114c4bc78b3eefe4c78812965822102e71b08bb2f74f0534ce46d7f8231c47833603ff9fe34a0ee80fccae388e1cc112103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee803000000000000695121034eadd003803ba7735ed320310458c5545f5e134293bc2bb5eebb1572c12e71fb2103ee1c05ae697cb30d15f4607b9835842c623a6fb7bd26e2a5dbabc8e7d8e6966a2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee8030000000000006951210264add003803ba7735edb2434545b904d632d7b0dc0bf23b1de88264bf21914622102de7f60cd59198a3b2297554dfb04b01b5b0c5b8e8a43d392b89ff9d1e9d4afda2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aec36d22fc06000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000002000002000000000000", + "rawtransaction": "020000000001062c92de96c3a1ea98037441c9b744faa2c97bd0210779e3e8a1b1d608a4c4213600000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffebe944bcf4c1e6110250fec5bc506e138ad6648ad18dca5716943bb6e675165d00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff10eb5d88e92219d6bab593805ed69f61715c931852217e3b7dee268782ed0d4200000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff2a60802243d7d3a05a125b316afaef836b1a19ed336b552fb82047d5ea5cc96700000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffc7b650628836e3373316f0c9443199619628e53855f459d508911108ee70289500000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffffe3060439ac394ea65ed59e417a5eaf61702288624d29f6f7722bdc1d9913dd800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff04e80300000000000069512103cabc784abacae5bbe594202f9720f1ea6274ba16379537fb949f017a133e4bfe21025fa52c6ae703b3ae81c7b3e4c70d02c2fe29a1379203d15bc304c3ff1203e0d42102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512103cabc784abacae5bbe5c9217d8730f2a9613ae0116ac03faa9fc15475177749f1210207f02c6fa550a7fcc5c4b6ec9e500bcdeb6dfc66980f8d44940591af1804b4b62102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512102e0bc784abacae5bbe5c3722a806ef0e70e4e860b62966ba8adf56c43254f79c0210235c11b099335c69df0f58189aa6532a88f5bc903f936b927a73cf09b2b3284952102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aec36d22fc06000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9501,8 +9632,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: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to detach the assets to + + utxo: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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 @@ -9556,8 +9687,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9570,12 +9701,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964303831623335313938393239383466623064336465633161636366346539396136393831373039623265393762303966626538356466373363393135383063313a307c62637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c5843507c31303030", + "data": "434e54525052545964363366306161666336636266393665393932353135346366613961336138393464643136643431623331363462306436323532396663663566383231666433613a307c62637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "02000000000103dce0f921f3ad21ad1b1a53ff971aa8738e7794a49688f396a1a68cb653cd12130100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff54660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb0000000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff8914ffcf77cbcf749ab000a2443eacec67b03c6e0175d3e2b0cdc11f4b2afcc90100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff04e8030000000000006951210272314ec7fdd8cdfa9fe6976c7b2d79bf8b56e42efd164f661960f4aa470038ed21038a81d5ab9bcfde0ca766b2b8c18992734b61ec9242f6ee8e89907725a9b3ac642103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210372314ec7fdd8cdfa9fe6c163792c73bb8f57ec74fe15472e1d61b6ba451569f721039adad1fdcbc2d859e835e0fdc8c09a20132ef8cd5da7b79f819b6872b8e8f13a2103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210258314ec7fdd8cdfa9feec3233e3839f6e22c8c6bfe1f47627f02c4ce74645de22103e9b0b4c8f8a9ea699e5fd38ef8b1a3447b588ea027cfd9ecb9a91147cc8b99792103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53ae11780b270100000016001492b5051f546edf56f17f264039d77d86944357d202000002000002000000000000", + "rawtransaction": "02000000000103852a7f4972fb917f233819e6f76928bbbae6daafe61d416318b90141a4d9dcad010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff5685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e000000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffffade892b34664b10a48b7c7f577788e97c429a2026f7f497be1bd76302220166a010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff04e803000000000000695121031bdf29ca92c5de3326fd9e4df90bb86c335837e22b8602ba2f5f5f8535f1a29921034f479966d01f9c637829d4156299e8762b4201379b8e4a235c72ae3434209ff8210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee803000000000000695121021bdf29ca92c5de3326ffcb18aa5de13f645d65b228da0bf0280514c331b1a373210202489e63da12cc3b2a7dd947779ab47628101732df8b0f735e7bf56e3178d7e3210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee8030000000000006951210231df29ca92c5de3326ebc04af40eb1710d7851fd78d00bbc4a6666b700c0978721037b24ff07e97eaf024010e07106a8de121f736304aab87e416c1698060112a697210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953ae11780b27010000001600141a4276a941acf906f7f9539bb10d51d26ee94e4002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9630,8 +9761,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -9639,16 +9770,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "owner": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "owner": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "divisible": true, "locked": false, "supply": 100000000000, @@ -9656,16 +9787,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729602071, - "last_issuance_block_time": 1729602071, + "first_issuance_block_time": 1729676379, + "last_issuance_block_time": 1729676379, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -9673,16 +9804,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -9690,16 +9821,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -9707,8 +9838,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" } ], @@ -9736,8 +9867,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -9745,8 +9876,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729601923, - "last_issuance_block_time": 1729601936, + "first_issuance_block_time": 1729676212, + "last_issuance_block_time": 1729676224, "supply_normalized": "100.00000000" } } @@ -9777,7 +9908,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9785,14 +9916,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9800,7 +9931,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9818,7 +9949,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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. @@ -9830,7 +9961,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -9884,9 +10015,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9901,7 +10032,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9927,9 +10058,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9944,7 +10075,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -9970,9 +10101,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9987,7 +10118,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10013,9 +10144,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10030,7 +10161,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10056,9 +10187,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10073,7 +10204,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10135,13 +10266,13 @@ Returns the orders of an asset { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10155,7 +10286,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10175,13 +10306,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10195,7 +10326,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10215,13 +10346,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "tx0_index": 49, - "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 50, - "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10235,7 +10366,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10315,20 +10446,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10336,20 +10467,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", + "event": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10357,20 +10488,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10378,20 +10509,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "event": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10403,16 +10534,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10472,12 +10603,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -10489,16 +10620,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "event": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602228, + "block_time": 1729676545, "asset_info": { "divisible": true, "asset_longname": null, @@ -10510,16 +10641,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "divisible": true, "asset_longname": null, @@ -10531,16 +10662,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "divisible": true, "asset_longname": null, @@ -10552,16 +10683,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "asset_info": { "divisible": true, "asset_longname": null, @@ -10601,20 +10732,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10658,14 +10789,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", + "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -10680,20 +10811,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -10708,20 +10839,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -10736,20 +10867,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -10764,7 +10895,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729601923, + "block_time": 1729676212, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10798,10 +10929,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10809,7 +10940,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -10822,10 +10953,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10833,7 +10964,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -10846,10 +10977,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", "block_index": 189, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10857,7 +10988,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602202, + "block_time": 1729676520, "asset_info": { "divisible": true, "asset_longname": null, @@ -10870,10 +11001,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", + "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", "block_index": 157, - "source": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", - "destination": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", + "destination": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10881,7 +11012,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602071, + "block_time": 1729676379, "asset_info": { "divisible": true, "asset_longname": null, @@ -10894,10 +11025,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489", + "tx_hash": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad", "block_index": 156, - "source": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", - "destination": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", + "source": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", + "destination": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10905,7 +11036,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602066, + "block_time": 1729676375, "asset_info": { "divisible": true, "asset_longname": null, @@ -10956,9 +11087,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -10967,7 +11098,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -10977,7 +11108,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -10993,9 +11124,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", + "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", "block_index": 142, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11004,7 +11135,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11014,7 +11145,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602006, + "block_time": 1729676304, "asset_info": { "divisible": true, "asset_longname": null, @@ -11030,9 +11161,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", + "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", "block_index": 150, - "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", + "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11040,10 +11171,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11051,7 +11182,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602041, + "block_time": 1729676339, "asset_info": { "divisible": true, "asset_longname": null, @@ -11067,18 +11198,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11088,7 +11219,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -11113,7 +11244,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - The address to return + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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` @@ -11126,9 +11257,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11137,7 +11268,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11147,7 +11278,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -11197,7 +11328,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11205,7 +11336,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11214,7 +11345,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11222,7 +11353,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11231,7 +11362,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11239,7 +11370,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11248,7 +11379,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11285,27 +11416,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11320,7 +11451,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -11334,27 +11465,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", + "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", "block_index": 147, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11369,7 +11500,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602028, + "block_time": 1729676326, "asset_info": { "divisible": true, "asset_longname": null, @@ -11383,19 +11514,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11403,7 +11534,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11418,7 +11549,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -11432,19 +11563,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11452,7 +11583,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11467,7 +11598,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -11510,8 +11641,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -11519,8 +11650,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729602080, - "last_issuance_block_time": 1729602080, + "first_issuance_block_time": 1729676388, + "last_issuance_block_time": 1729676388, "supply_normalized": "0.00000000" } ], @@ -11529,12 +11660,19 @@ Returns asset subassets } ``` -### Get Fairminters By Asset [GET /v2/assets/{asset}/fairminters{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Fairminters By Asset [GET /v2/assets/{asset}/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns the fairminter by its asset + Parameters + asset: `FAIRMINTA` (str, required) - The asset of the fairminter to return + + status (enum[str], optional) - The status of the fairminters to return + + Default: `all` + + Members + + `all` + + `open` + + `closed` + + `pending` + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -11552,10 +11690,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11580,7 +11718,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11620,22 +11758,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", + "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", "tx_index": 13, "block_index": 125, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11644,22 +11782,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11668,22 +11806,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11702,7 +11840,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u` (str, required) - The address of the mints to return + + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (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` @@ -11721,22 +11859,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -11785,9 +11923,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11802,7 +11940,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11828,9 +11966,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11845,7 +11983,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11871,9 +12009,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -11888,7 +12026,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11914,9 +12052,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "block_index": 188, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -11931,7 +12069,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11957,9 +12095,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11974,7 +12112,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12009,7 +12147,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09` (str, required) - The hash of the transaction that created the order + + order_hash: `b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2` (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. @@ -12021,9 +12159,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12038,7 +12176,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12070,7 +12208,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2` (str, required) - The hash of the transaction that created the order + + order_hash: `f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a` (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 @@ -12097,13 +12235,13 @@ Returns the order matches of an order { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12117,7 +12255,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12137,13 +12275,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12157,7 +12295,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12187,7 +12325,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2` (str, required) - The hash of the transaction that created the order + + order_hash: `f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a` (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 @@ -12206,15 +12344,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "btc_amount": 2000, - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "status": "valid", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "btc_amount_normalized": "0.00002000" } ], @@ -12258,9 +12396,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12278,7 +12416,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729602194, + "block_time": 1729676502, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12304,9 +12442,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "block_index": 188, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12324,7 +12462,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12350,9 +12488,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12370,7 +12508,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12396,9 +12534,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12416,7 +12554,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12442,9 +12580,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12462,7 +12600,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12525,13 +12663,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12548,7 +12686,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12568,13 +12706,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12591,7 +12729,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12611,13 +12749,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "tx0_index": 49, - "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 50, - "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12634,7 +12772,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602113, + "block_time": 1729676422, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12692,13 +12830,13 @@ Returns all the order matches { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12712,7 +12850,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12732,13 +12870,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12752,7 +12890,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12772,13 +12910,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "tx0_index": 49, - "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 50, - "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12792,7 +12930,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12960,66 +13098,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", + "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", "block_index": 121, - "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", + "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729601918, + "block_time": 1729676208, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "1d3ad1a09fefd93cfd842d392f108a9ea07b46139667d21bf1217e0e8d148a31", + "tx_hash": "e5536dd615707c7c3db9ed85b0ee4e26962ef522412e53a7583562bf53f9bed6", "block_index": 120, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729601914, + "block_time": 1729676204, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "555f50a768779c0d5ceb16845a5ea91b5eeafd59cbc9563cb38f704eaa33a5d2", + "tx_hash": "3da47037f73ceafc5ffae318453f303e77b32ea545da24985f5790a260c54bea", "block_index": 119, - "source": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4", + "source": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729601910, + "block_time": 1729676199, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "65d709a2aba05390e14cb46ed39a7a07f84423f10d6660b114679ff31fce6f11", + "tx_hash": "27f9b9e7d012e6e75b08b1d7a450dc3b17b2d14eb4b123e83087b367364ba3d0", "block_index": 118, - "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729601906, + "block_time": 1729676195, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d9c549fae7b7a5caf16608715bc92a38295e98811bbd0a8d2aef7435697db5d7", + "tx_hash": "4ba484c83bb8ab87d399d82e60a5a70b07df9458db02638f11b6bfec48060b5a", "block_index": 117, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729601902, + "block_time": 1729676191, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13064,9 +13202,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13075,7 +13213,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13085,7 +13223,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -13101,9 +13239,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", + "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", "block_index": 142, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13112,7 +13250,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13122,7 +13260,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602006, + "block_time": 1729676304, "asset_info": { "divisible": true, "asset_longname": null, @@ -13138,9 +13276,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", + "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", "block_index": 150, - "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", + "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13148,10 +13286,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13159,7 +13297,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602041, + "block_time": 1729676339, "asset_info": { "divisible": true, "asset_longname": null, @@ -13175,18 +13313,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13196,7 +13334,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -13221,7 +13359,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a` (str, required) - The hash of the dispenser to return + + dispenser_hash: `b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2` (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. @@ -13233,9 +13371,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13244,7 +13382,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13254,7 +13392,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -13276,7 +13414,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a` (str, required) - The hash of the dispenser to return + + dispenser_hash: `b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2` (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 @@ -13296,19 +13434,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13316,7 +13454,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13331,7 +13469,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -13345,19 +13483,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13365,7 +13503,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13380,7 +13518,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -13422,20 +13560,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -13460,7 +13598,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18` (str, required) - The hash of the dividend to return + + dividend_hash: `27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8` (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. @@ -13472,20 +13610,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -13507,7 +13645,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8` (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 @@ -13530,12 +13668,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "tx_index": 41, - "utxo": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "utxo": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "divisible": true, "asset_longname": null, @@ -13547,16 +13685,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "address": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "divisible": true, "asset_longname": null, @@ -13602,27 +13740,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 561, @@ -13631,14 +13769,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -13649,9 +13787,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 560, @@ -13660,9 +13798,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -13672,24 +13810,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -13699,9 +13837,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 558, @@ -13729,15 +13867,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } } ``` @@ -13815,16 +13953,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -13834,9 +13972,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 557, @@ -13846,12 +13984,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -13861,9 +13999,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 554, @@ -13873,39 +14011,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "divisible": true, "asset_longname": null, @@ -13915,36 +14053,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "block_time": 1729602224 + "block_time": 1729676541 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "block_time": 1729602224 + "block_time": 1729676541 } ], "next_cursor": 536, @@ -14000,27 +14138,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14035,7 +14173,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -14049,27 +14187,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", + "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", "block_index": 147, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14084,7 +14222,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602028, + "block_time": 1729676326, "asset_info": { "divisible": true, "asset_longname": null, @@ -14098,19 +14236,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14118,7 +14256,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14133,7 +14271,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -14147,19 +14285,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14167,7 +14305,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14182,7 +14320,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -14224,10 +14362,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14235,7 +14373,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -14248,10 +14386,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14259,11 +14397,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -14272,10 +14410,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14283,7 +14421,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -14296,10 +14434,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14307,11 +14445,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -14320,10 +14458,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14331,11 +14469,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -14373,14 +14511,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -14395,20 +14533,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", + "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -14423,20 +14561,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729602084, + "block_time": 1729676392, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", + "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -14451,20 +14589,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602080, + "block_time": 1729676388, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", + "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -14479,20 +14617,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602075, + "block_time": 1729676383, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", + "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "transfer": false, "callable": false, "call_date": 0, @@ -14507,7 +14645,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602071, + "block_time": 1729676379, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14522,7 +14660,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d` (str, required) - The hash of the transaction to return + + tx_hash: `5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c` (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. @@ -14534,14 +14672,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -14556,7 +14694,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14588,16 +14726,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], @@ -14611,7 +14749,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7` (str, required) - The hash of the transaction to return + + tx_hash: `a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667` (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. @@ -14624,16 +14762,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], @@ -14667,9 +14805,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "block_index": 138, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14677,14 +14815,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601990, + "block_time": 1729676278, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", + "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", "block_index": 137, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14692,7 +14830,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601986, + "block_time": 1729676274, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14706,7 +14844,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb` (str, required) - The hash of the transaction to return + + tx_hash: `6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f` (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. @@ -14718,9 +14856,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "block_index": 138, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14728,7 +14866,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601990, + "block_time": 1729676278, "fee_fraction_int_normalized": "0.00000000" } } @@ -14736,11 +14874,18 @@ Returns the broadcast of a transaction ## Group Fairminters -### Get All Fairminters [GET /v2/fairminters{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get All Fairminters [GET /v2/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns all fairminters + Parameters + + status (enum[str], optional) - The status of the fairminters to return + + Default: `all` + + Members + + `all` + + `open` + + `closed` + + `pending` + cursor (str, optional) - The last index of the fairminter to return + Default: `None` + limit: `5` (int, optional) - The maximum number of fairminter to return @@ -14758,10 +14903,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14786,7 +14931,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729602062, + "block_time": 1729676370, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14795,10 +14940,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14823,7 +14968,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729601977, + "block_time": 1729676266, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14835,10 +14980,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -14863,7 +15008,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729601960, + "block_time": 1729676249, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14875,10 +15020,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -14903,7 +15048,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729601956, + "block_time": 1729676245, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -14915,10 +15060,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -14943,7 +15088,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15012,22 +15157,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -15036,22 +15181,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", + "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601973, + "block_time": 1729676262, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -15060,22 +15205,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", + "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601969, + "block_time": 1729676258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -15084,22 +15229,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", + "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601964, + "block_time": 1729676253, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -15108,22 +15253,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "8aab2952776b8e585c7b8c0de38a82736ba4f3b1389a94782a6a9464edacba10", + "tx_hash": "2295039e748f4b0d70a7e6dfa7d556337e04c3837b1ec2bb63210dfcdd27213f", "tx_index": 17, "block_index": 129, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601953, + "block_time": 1729676241, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -15142,7 +15287,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1` (str, required) - The hash of the fairmint to return + + tx_hash: `ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945` (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. @@ -15153,22 +15298,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -15186,7 +15331,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c,bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4` (str, required) - The addresses to search for + + addresses: `bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95,bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74` (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. @@ -15205,8 +15350,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", - "address": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c" + "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", + "address": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95" }, { "vout": 2, @@ -15214,8 +15359,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", - "address": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4" + "txid": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", + "address": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74" } ], "next_cursor": null, @@ -15228,7 +15373,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut` (str, required) - The address to search for + + address: `bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d` (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 @@ -15244,28 +15389,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "9a55e6d3e0a8444e2506c0165584a0c088cf5c7fd47e14fc83902b53a4a64251" + "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29" }, { - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f" + "tx_hash": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057" }, { - "tx_hash": "fcfd0fc820a5d2c8bfefe898c6057bfda1c3ef32f726d5fcb147e25d7a5a6396" + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667" }, { - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7" + "tx_hash": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86" }, { - "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2" + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" }, { - "tx_hash": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6" + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2" }, { - "tx_hash": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf" + "tx_hash": "db4eedd503a3a78611f54a1df9483686777f866a745f7644adae81d1e2fa9fbf" }, { - "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" + "tx_hash": "47bf5a24eb83c74d78bffde051f355092efbe4ab6b951f01bedf5a607268a2eb" } ], "next_cursor": null, @@ -15278,7 +15423,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt` (str, required) - The address to search for. + + address: `bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu` (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. @@ -15291,8 +15436,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 8, - "tx_hash": "9de1943fcf1147bb5df342d8691b323c13457a25336bb16a008c1940b1a7dd75" + "block_index": 1, + "tx_hash": "0979edfa8c2f003fdd07c0d012947833cf66d9395d51d971bc624b4b7c203472" } } ``` @@ -15302,7 +15447,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c` (str, required) - The address to search for + + address: `bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95` (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 @@ -15323,7 +15468,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654" + "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556" } ], "next_cursor": null, @@ -15336,7 +15481,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws` (str, required) - Address to get pubkey for. + + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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. @@ -15348,7 +15493,7 @@ Get pubkey for an address. ``` { - "result": "03946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f23" + "result": "02e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a" } ``` @@ -15357,7 +15502,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1` (str, required) - The transaction hash + + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (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. @@ -15369,7 +15514,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010199f235875cfd49f760882fcaa4b278fa0374987369cda7d7b42e789d0854890d0100000000ffffffff03e80300000000000016001492b5051f546edf56f17f264039d77d86944357d200000000000000000c6a0a022a7d05ec02a8bad228dced08270100000016001407c1b21a0d36c635f4040393f57e2dc791018c2202473044022031fe513ea57ee002932b62f19bdfb20d9ad85e8e09a4d9831434f4cd1ef13b8b022025fb71583669e27f6c0d24e883cd5064cd7d4f41ab14fe85ec0b9032a1906149012103ddb31ff5cc13c44a222b3cea61fa6131163a5a06fd8f30f1c38b0fe85b68a2ea00000000" + "result": "02000000000101ec5ecb5505352fabe1e553387612aead6cd063550a2e97d5776fa1fa9e809deb0100000000ffffffff03e8030000000000001600141a4276a941acf906f7f9539bb10d51d26ee94e4000000000000000000c6a0a5e7a06c5f66b6d5b1703dced08270100000016001474ddbc39c1f0f36185e16375629f2623c46061c802473044022071a2783b88cda714f84ce3a1d8ba5080f13dc91eb0725c4c619a11df84853ad902206321ea29901ce9346a49536059adec2a4d5c6ae5b9e0fda1084e0957d0fec8b801210269ff0be68bd0b9d62624826865b687dce119a43371f72e17b31b86ad0df3e42c00000000" } ``` @@ -15464,27 +15609,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63 }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "quantity": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, "asset_info": { "divisible": true, @@ -15495,22 +15640,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -15520,22 +15665,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 196, - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -15545,30 +15690,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729602242.0374818, + "block_time": 1729676559.013981, "btc_amount": 0, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "destination": "", "fee": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, - "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", + "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -15582,7 +15727,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, @@ -15613,19 +15758,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -15635,7 +15780,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, @@ -15648,7 +15793,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c` (str, required) - The hash of the transaction to return + + tx_hash: `0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff` (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 @@ -15668,27 +15813,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63 }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "quantity": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, "asset_info": { "divisible": true, @@ -15699,22 +15844,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -15724,22 +15869,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 196, - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -15749,30 +15894,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729602242.0374818, + "block_time": 1729676559.013981, "btc_amount": 0, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "destination": "", "fee": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, - "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", + "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -15786,7 +15931,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0014.add_index_to_ledger_hash.sql b/counterparty-core/counterpartycore/lib/api/migrations/0014.add_index_to_ledger_hash.sql new file mode 100644 index 0000000000..1c242f17ba --- /dev/null +++ b/counterparty-core/counterpartycore/lib/api/migrations/0014.add_index_to_ledger_hash.sql @@ -0,0 +1,3 @@ +-- depends: 0013.fix_fairminters_table + +CREATE INDEX IF NOT EXISTS blocks_ledger_hash_idx ON blocks (ledger_hash); \ No newline at end of file diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 7e5892fec1..6b2c1ca4bc 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -13,6 +13,7 @@ DispenserStatus = Literal["all", "open", "closed", "closing", "open_empty_address"] DispenserStatusNumber = {"open": 0, "closed": 10, "closing": 11, "open_empty_address": 1} DispenserStatusNumberInverted = {value: key for key, value in DispenserStatusNumber.items()} +FairmintersStatus = Literal["all", "open", "closed", "pending"] BetMatchesStatus = Literal[ "dropped", @@ -282,8 +283,6 @@ def select_rows( query = f"{query} OFFSET ?" bindings.append(offset) - print(query, bindings) - with start_sentry_span(op="db.sql.execute", description=query) as sql_span: sql_span.set_tag("db.system", "sqlite3") cursor.execute(query, bindings) @@ -1467,7 +1466,12 @@ def get_sweeps_by_address( :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) """ return select_rows( - db, "sweeps", where={"source": address}, last_cursor=cursor, limit=limit, offset=offset + db, + "sweeps", + where=[{"source": address}, {"destination": address}], + last_cursor=cursor, + limit=limit, + offset=offset, ) @@ -2170,7 +2174,7 @@ def get_asset_balances( ) -def prepare_order_where_status(status, arg_type, other_conditions=None): +def prepare_where_status(status, arg_type, other_conditions=None): where = [] statuses = status.split(",") for status in statuses: @@ -2186,11 +2190,11 @@ def prepare_order_where_status(status, arg_type, other_conditions=None): def prepare_order_where(status, other_conditions=None): - return prepare_order_where_status(status, OrderStatus, other_conditions=other_conditions) + return prepare_where_status(status, OrderStatus, other_conditions=other_conditions) def prepare_order_matches_where(status, other_conditions=None): - return prepare_order_where_status(status, OrderMatchesStatus, other_conditions=other_conditions) + return prepare_where_status(status, OrderMatchesStatus, other_conditions=other_conditions) def get_orders( @@ -2605,14 +2609,24 @@ def get_dispenser_info_by_hash(db, dispenser_hash: str): ) -def get_all_fairminters(db, cursor: str = None, limit: int = 100, offset: int = None): +def prepare_fairminters_where(status, other_conditions=None): + return prepare_where_status(status, FairmintersStatus, other_conditions=other_conditions) + + +def get_all_fairminters( + db, status: FairmintersStatus = "all", cursor: str = None, limit: int = 100, offset: int = None +): """ Returns all fairminters + :param str status: The status of the fairminters to return :param str cursor: The last index of the fairminter to return :param int limit: The maximum number of fairminter 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, "fairminters", last_cursor=cursor, limit=limit, offset=offset) + where = prepare_fairminters_where(status) + return select_rows( + db, "fairminters", where=where, last_cursor=cursor, limit=limit, offset=offset + ) def get_fairminter(db, tx_hash: str): @@ -2627,30 +2641,66 @@ def get_fairminter(db, tx_hash: str): ) +def get_fairminters_by_block( + db, + block_index: int, + status: FairmintersStatus = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, +): + """ + Returns the fairminters by its block index + :param int block_index: The block index of the fairminter to return (e.g. $LAST_FAIRMINTER_BLOCK) + :param str status: The status of the fairminters to return + :param str cursor: The last index of the fairminter to return + :param int limit: The maximum number of fairminter to return (e.g. 5) + :param int offset: The number of lines to skip before + """ + where = prepare_fairminters_where(status, {"block_index": block_index}) + return select_rows( + db, "fairminters", where=where, last_cursor=cursor, limit=limit, offset=offset + ) + + def get_fairminters_by_asset( - db, asset: str, cursor: str = None, limit: int = 100, offset: int = None + db, + asset: str, + status: FairmintersStatus = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, ): """ Returns the fairminter by its asset :param str asset: The asset of the fairminter to return (e.g. $ASSET_1) + :param str status: The status of the fairminters to return """ where = {"asset": asset.upper()} if "." in asset: where = {"asset_longname": asset.upper()} + where = prepare_fairminters_where(status, where) return select_rows( db, "fairminters", where=where, last_cursor=cursor, limit=limit, offset=offset ) def get_fairminters_by_address( - db, address: str, cursor: str = None, limit: int = 100, offset: int = None + db, + address: str, + status: FairmintersStatus = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, ): """ Returns the fairminter by its source :param str address: The source of the fairminter to return (e.g. $ADDRESS_1) + :param str status: The status of the fairminters to return """ + where = prepare_fairminters_where(status, {"source": address}) return select_rows( - db, "fairminters", where={"source": address}, last_cursor=cursor, limit=limit, offset=offset + db, "fairminters", where=where, last_cursor=cursor, limit=limit, offset=offset ) @@ -2738,3 +2788,23 @@ def get_fairmint(db, tx_hash: str): "fairmints", where={"tx_hash": tx_hash}, ) + + +def get_fairmints_by_block( + db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None +): + """ + Returns the fairmints by its block index + :param int block_index: The block index of the fairmint to return (e.g. $LAST_FAIRMINT_BLOCK) + :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", + where={"block_index": block_index}, + last_cursor=cursor, + limit=limit, + offset=offset, + ) diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index b6e8bb8341..a8261d4554 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -28,6 +28,8 @@ def get_routes(): "/v2/blocks//sends": queries.get_sends_by_block, "/v2/blocks//dispenses": queries.get_dispenses_by_block, "/v2/blocks//sweeps": queries.get_sweeps_by_block, + "/v2/blocks//fairminters": queries.get_fairminters_by_block, + "/v2/blocks//fairmints": queries.get_fairmints_by_block, ### /transactions ### "/v2/transactions": queries.get_transactions, "/v2/transactions/info": compose.info, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 4259b66366..fc2c46f467 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -485,6 +485,11 @@ "next_cursor": null, "result_count": 0 }, + "http://localhost:10009/v2/blocks/310491/fairmints?verbose=true": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, "http://localhost:10009/v2/transactions?verbose=true": { "result": [ { @@ -8515,6 +8520,113 @@ } ] }, + "/v2/blocks//fairminters": { + "function": "get_fairminters_by_block", + "description": "Returns the fairminters by its block index", + "args": [ + { + "name": "block_index", + "required": true, + "type": "int", + "description": "The block index of the fairminter to return (e.g. $LAST_FAIRMINTER_BLOCK)" + }, + { + "name": "status", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "open", + "closed", + "pending" + ], + "description": "The status of the fairminters to return" + }, + { + "name": "cursor", + "default": null, + "required": false, + "type": "str", + "description": "The last index of the fairminter to return" + }, + { + "name": "limit", + "default": 100, + "required": false, + "type": "int", + "description": "The maximum number of fairminter to return (e.g. 5)" + }, + { + "name": "offset", + "default": null, + "required": false, + "type": "int", + "description": "The number of lines to skip before" + }, + { + "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/blocks//fairmints": { + "function": "get_fairmints_by_block", + "description": "Returns the fairmints by its block index", + "args": [ + { + "name": "block_index", + "required": true, + "type": "int", + "description": "The block index of the fairmint to return (e.g. $LAST_FAIRMINT_BLOCK)" + }, + { + "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/transactions": { "function": "get_transactions", "description": "Returns the list of the last ten transactions", @@ -10529,6 +10641,19 @@ "type": "str", "description": "The source of the fairminter to return (e.g. $ADDRESS_1)" }, + { + "name": "status", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "open", + "closed", + "pending" + ], + "description": "The status of the fairminters to return" + }, { "name": "cursor", "default": null, @@ -15059,6 +15184,19 @@ "type": "str", "description": "The asset of the fairminter to return (e.g. $ASSET_1)" }, + { + "name": "status", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "open", + "closed", + "pending" + ], + "description": "The status of the fairminters to return" + }, { "name": "cursor", "default": null, @@ -16552,6 +16690,19 @@ "function": "get_all_fairminters", "description": "Returns all fairminters", "args": [ + { + "name": "status", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "open", + "closed", + "pending" + ], + "description": "The status of the fairminters to return" + }, { "name": "cursor", "default": null, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 85f770992f..82500206d4 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": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", "difficulty": 545259519, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", - "block_time": 1729602228, - "previous_block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", + "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_time": 1729676545, + "previous_block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", "difficulty": 545259519, - "ledger_hash": "5e641bd94b5742c5d23a62f7b8dcc9e24c7b488635d3f17823f3db0d54cf58a5", - "txlist_hash": "efe3e0fab00782d7e5df98f7ea91c90785ca938cb58537ed5e943a4a208a2ef9", - "messages_hash": "c10fdcf5d9ed8c8f5999b936c5dc57dda97737990c1e2ac3fc4c841323e8c01a", + "ledger_hash": "9dcfe7a47c2fb360eca9a969852773a92eb5d2328a23345228c403354af37d58", + "txlist_hash": "6ac7a3af202cec00be8c7cfa322e5e97f9077b483223528eda4c7e8d0296dc31", + "messages_hash": "5df8ba2ff2bd0457f3880a370b32eecdd9f820c4452a683cbc9f0949ab177108", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "1615de6549010a4d4cbca5c3ced4d05ad4672fa06c2d55cf1b38bf61f9ed221e", - "block_time": 1729602224, - "previous_block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", + "block_time": 1729676541, + "previous_block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", "difficulty": 545259519, - "ledger_hash": "9793950b57a496010adc84f7a05d3b70530da75760fff8c15b65e6e42f019045", - "txlist_hash": "69682a702da947c430f207f5bea127bdbcb09f4335e384b47dea9d733a606deb", - "messages_hash": "ba2714ef233bf18d9733f7b97f1a1596c071fc81c71e8246dc3cbdd87bb31c84", + "ledger_hash": "398017b47f606f3af4e227c3aa64fbfd03eaf0cf158624b1e32e7d49f3e340e5", + "txlist_hash": "3cb1a0afed67ac326473a882776bdaca17ef79331404cf28167b2a56fa88bf9e", + "messages_hash": "e4439bd0b7b14dbafee2ef7a5ec521016d25c27a3baf03401b13bb0570d09e7a", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", - "block_time": 1729602219, - "previous_block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_time": 1729676536, + "previous_block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", "difficulty": 545259519, - "ledger_hash": "2c63fbbc09b4d3cc35ad80faeb9b7b6b8cb4676bcd9b300bcf86c1576fcc8416", - "txlist_hash": "38969dc42c309021c04c5020181b99552b3889af1543c9a435b47a6dee175e78", - "messages_hash": "77e75be3e6fecb2c027ed1dd3f6c7c054c70b1ca6e2f41b72b2a8f7b71b6fb2a", + "ledger_hash": "3cbb4062bbc678878b0ece16d25494730be1241a6a73aad4d849e33e29a8a23f", + "txlist_hash": "10dfdf6d781ecb009da71df3e63cb856426299120d035c5e3e9f5095c19b0fab", + "messages_hash": "b3abe98e60f148ec273bbc35053c4232381a565ef2e4aa4c1ff10508e0956db0", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", - "block_time": 1729602215, - "previous_block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", + "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_time": 1729676532, + "previous_block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", "difficulty": 545259519, - "ledger_hash": "53a652903930bb36aa93e893db14990956b7df3b4f5d7887571dcce7c731964a", - "txlist_hash": "0d4223380ddaa6b1b42296d71e411154a3464763b0c8a52e8fd3bdf729cbeaa5", - "messages_hash": "a80fc8473b7714026af7ac37936d01cc200232a0dd550687aa36f9b52b1bb278", + "ledger_hash": "ed83ed864ac6951beac860bebebb75d09e9e42c8add81f1c1bb438bef8c273fc", + "txlist_hash": "31bbc916b4ec2281e696dc3eeea7fb9721f62693801bd5fb4b19aedd71f6ca9d", + "messages_hash": "26ef1835d6506ff745e6aa6db046666020c84948d6819b1f66c3e3ade2789b90", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", "difficulty": 545259519, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", "difficulty": 545259519, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1" + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "object_id": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "block_index": 184, "confirmed": true, - "block_time": 1729602113 + "block_time": 1729676422 }, { "type": "order", - "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, "confirmed": true, - "block_time": 1729602113 + "block_time": 1729676422 }, { "type": "order_match", - "object_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "block_index": 184, "confirmed": true, - "block_time": 1729602113 + "block_time": 1729676422 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "status": "valid", "confirmed": true, - "block_time": 1729602215 + "block_time": 1729676532 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "block_index": 195, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729602228, + "block_time": 1729676545, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "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": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,37 +664,110 @@ "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], "next_cursor": null, "result_count": 1 }, + "/v2/blocks//fairminters": { + "result": [ + { + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1729676370, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairmints": { + "result": [ + { + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729676270, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + ], + "next_cursor": null, + "result_count": 1 + }, "/v2/transactions": { "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -707,17 +780,17 @@ }, { "tx_index": 61, - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "block_index": 195, - "block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107", - "block_time": 1729602228, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_time": 1729676545, + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc:1", + "utxos_info": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -757,7 +830,7 @@ { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "014300", + "script_sig": "014200", "sequence": 4294967295, "coinbase": true } @@ -765,7 +838,7 @@ "vout": [ { "value": 5000000000, - "script_pub_key": "0014ac259a46ca7b25183c056dd8cd8af381d44a2f17" + "script_pub_key": "0014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40" }, { "value": 0, @@ -776,25 +849,25 @@ "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e", - "tx_id": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e" + "tx_hash": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe", + "tx_id": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe" } } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "808ebf21eb43f3966393d863914f83ac21e0771f465b3f8019f288326d01922a", + "hash": "55c67f194fd4987d50f9414a51e3d352d06746d21fd60d54124e2e93d3c6e5f8", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -804,20 +877,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2edba97a08c291984bc2696c4bad0621d2c539ed154f42323db37ff3874edda0307d13d6e7118b61073ee57cc3ac43" + "script_pub_key": "6a2efb55cf9708665e83703ddaf6990bae645d7df6d910369af9ec09cee0ce82efedc199e1e27411b421e1c6dff2caa0" }, { "value": 4999955000, - "script_pub_key": "0014eddb83e7d0005a90f0f03950a23b9675325ea37c" + "script_pub_key": "0014389cf1fc21f030356a2b4839e8cb66dc9bd69abb" } ], "vtxinwit": [ - "3044022066154309fabb70c77ce0733c25808f035de015e692f0d94e42b7a7d446d56a2e02200e2d82f11584977cfda5e611503ebd3e5f436872db8aed823e263c2f04cdc67d01", - "03ab0c4957149f74cffa275ca102e3ed301502bcd2086ca6a7e5283755c86100e7" + "3044022073f2e04ac9876ade564fb6688b56c4e326b933e06e68b2134a23b89eac3993fa02201604e88618738b36cf449e53d0a4457fea6fdc69867431aaceef1be3b839024801", + "02ffb386606fe3569f0bd57b21acea3bb5debb97764165fcaba274dc4f81cdf82f" ], "lock_time": 0, - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", - "tx_id": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c" + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_id": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff" }, "unpacked_data": { "message_type": "enhanced_send", @@ -825,7 +898,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -852,17 +925,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -877,17 +950,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", - "block_time": 1729602237, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_time": 1729676554, + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -906,12 +979,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 561, @@ -920,14 +993,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -938,9 +1011,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 560, @@ -949,9 +1022,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -961,24 +1034,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -988,9 +1061,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 558, @@ -998,14 +1071,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "msg_index": 1, "quantity": 1500000000, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "status": "valid", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1015,9 +1088,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 557, @@ -1030,12 +1103,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 561, @@ -1044,14 +1117,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1062,9 +1135,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 560, @@ -1073,9 +1146,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -1085,24 +1158,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1112,9 +1185,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 558, @@ -1122,14 +1195,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "msg_index": 1, "quantity": 1500000000, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "status": "valid", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1139,9 +1212,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 557, @@ -1151,10 +1224,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1162,7 +1235,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1175,10 +1248,10 @@ }, { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1186,11 +1259,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1206,27 +1279,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1241,7 +1314,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1262,16 +1335,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1281,9 +1354,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 557, @@ -1293,12 +1366,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1308,9 +1381,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 554, @@ -1320,24 +1393,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": null, @@ -1349,16 +1422,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1368,9 +1441,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 557, @@ -1380,12 +1453,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1395,9 +1468,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 554, @@ -1407,24 +1480,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": null, @@ -1437,7 +1510,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1447,7 +1520,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1458,7 +1531,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1468,7 +1541,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1479,7 +1552,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1489,7 +1562,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1500,7 +1573,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1510,7 +1583,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1521,7 +1594,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1531,7 +1604,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1545,17 +1618,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", - "block_time": 1729602219, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_time": 1729676536, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", + "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1591,23 +1664,23 @@ }, { "tx_index": 58, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", - "block_time": 1729602215, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_time": 1729676532, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "supported": true, - "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", + "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "status": "valid" } }, @@ -1615,17 +1688,17 @@ }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 191, - "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", - "block_time": 1729602211, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", + "block_time": 1729676529, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", + "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1661,17 +1734,17 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", - "block_time": 1729602207, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", + "block_time": 1729676525, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", + "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1679,14 +1752,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -1694,7 +1767,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1713,25 +1786,25 @@ }, { "tx_index": 53, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_hash": "68661f1299e623ecf2ed1209495013b7f01bab0631c0a658d57d11700e354d5e", - "block_time": 1729602194, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "2e8fa43b31410e6856113665bac1c83985e16b3a8a748c12dd18eb51a2d209cb", + "block_time": 1729676502, + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "btc_amount": 2000, "fee": 10000, - "data": "0b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd28dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "data": "0bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "supported": true, - "utxos_info": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e:0", + "utxos_info": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "status": "valid" } }, @@ -1760,11 +1833,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "open", - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1788,24 +1861,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "block_index": 193, - "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729602219, + "block_time": 1729676536, "asset_info": { "divisible": true, "asset_longname": null, @@ -1815,25 +1888,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", "block_index": 193, - "block_time": 1729602219, + "block_time": 1729676536, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, - "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", + "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1865,40 +1938,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "tx_index": 58, - "block_time": 1729602215 + "block_time": 1729676532 }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729602215, + "block_time": 1729676532, "asset_info": { "divisible": true, "asset_longname": null, @@ -1908,9 +1981,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 } ], "next_cursor": 520, @@ -1919,17 +1992,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "quantity": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, "asset_info": { "divisible": true, @@ -1940,22 +2013,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1965,22 +2038,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 196, - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -1990,30 +2063,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729602242.0374818, + "block_time": 1729676559.013981, "btc_amount": 0, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "destination": "", "fee": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, - "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", + "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -2027,7 +2100,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, @@ -2036,7 +2109,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2044,14 +2117,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2059,14 +2132,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2081,7 +2154,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2089,7 +2162,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2102,7 +2175,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2124,16 +2197,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "asset_info": { "divisible": true, "asset_longname": null, @@ -2145,16 +2218,16 @@ }, { "block_index": 184, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "event": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "asset_info": { "divisible": true, "asset_longname": null, @@ -2166,20 +2239,20 @@ }, { "block_index": 161, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "event": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2187,20 +2260,20 @@ }, { "block_index": 158, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", + "event": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602075, + "block_time": 1729676383, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2212,16 +2285,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "event": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "tx_index": 39, - "utxo": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", - "utxo_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "utxo": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "utxo_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "confirmed": true, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2235,16 +2308,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "asset_info": { "divisible": true, "asset_longname": null, @@ -2256,16 +2329,16 @@ }, { "block_index": 191, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602211, + "block_time": 1729676529, "asset_info": { "divisible": true, "asset_longname": null, @@ -2277,16 +2350,16 @@ }, { "block_index": 190, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -2298,20 +2371,20 @@ }, { "block_index": 190, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2319,16 +2392,16 @@ }, { "block_index": 185, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "event": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602185, + "block_time": 1729676493, "asset_info": { "divisible": true, "asset_longname": null, @@ -2351,9 +2424,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", + "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", "block_index": 137, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2361,7 +2434,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601986, + "block_time": 1729676274, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2372,14 +2445,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "c517af74238fda6b2de028daa66be74f42674351f2feffb4031b31e29c04b838", + "tx_hash": "b1787afd89597b03aa5b015b1c2ef508d2593f14f453f9c8c865b51422388834", "block_index": 112, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729601881, + "block_time": 1729676171, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2391,10 +2464,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2402,7 +2475,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -2415,10 +2488,10 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2426,11 +2499,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2439,10 +2512,10 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2450,11 +2523,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2463,10 +2536,10 @@ }, { "tx_index": 39, - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "block_index": 152, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2474,11 +2547,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2487,10 +2560,10 @@ }, { "tx_index": 36, - "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", + "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", "block_index": 149, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2498,11 +2571,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602036, + "block_time": 1729676334, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2517,10 +2590,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "block_index": 151, - "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", - "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", + "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2528,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602045, + "block_time": 1729676343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2547,10 +2620,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2558,11 +2631,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2571,10 +2644,10 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2582,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2595,10 +2668,10 @@ }, { "tx_index": 39, - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "block_index": 152, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2606,11 +2679,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2619,10 +2692,10 @@ }, { "tx_index": 36, - "tx_hash": "b7bc065c830beeb02e5b42ab92b4a5be3fb0d6380d25f7e79e2456f34582e831", + "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", "block_index": 149, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf:1", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2630,11 +2703,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602036, + "block_time": 1729676334, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2649,10 +2722,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "block_index": 151, - "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", - "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", + "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2660,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602045, + "block_time": 1729676343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -2679,9 +2752,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2690,7 +2763,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2700,7 +2773,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -2721,9 +2794,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2732,7 +2805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2742,7 +2815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -2762,19 +2835,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2782,7 +2855,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2797,7 +2870,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -2811,19 +2884,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2831,7 +2904,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2846,7 +2919,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -2866,19 +2939,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2886,7 +2959,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2901,7 +2974,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -2915,19 +2988,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2935,7 +3008,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2950,7 +3023,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -2970,19 +3043,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2990,7 +3063,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3005,7 +3078,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -3019,19 +3092,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3039,7 +3112,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3054,7 +3127,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -3074,19 +3147,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3094,7 +3167,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3109,7 +3182,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -3123,19 +3196,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3143,7 +3216,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3158,7 +3231,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -3177,16 +3250,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], @@ -3197,14 +3270,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -3219,20 +3292,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", + "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -3247,20 +3320,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729602084, + "block_time": 1729676392, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", + "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -3275,20 +3348,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602080, + "block_time": 1729676388, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", + "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -3303,20 +3376,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602075, + "block_time": 1729676383, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -3331,7 +3404,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729602062, + "block_time": 1729676370, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3345,8 +3418,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -3354,16 +3427,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -3371,16 +3444,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -3388,16 +3461,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -3405,16 +3478,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -3422,8 +3495,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729601940, - "last_issuance_block_time": 1729601956, + "first_issuance_block_time": 1729676228, + "last_issuance_block_time": 1729676245, "supply_normalized": "0.00000000" } ], @@ -3436,8 +3509,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -3445,16 +3518,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -3462,16 +3535,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -3479,16 +3552,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -3496,16 +3569,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -3513,8 +3586,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729601940, - "last_issuance_block_time": 1729601956, + "first_issuance_block_time": 1729676228, + "last_issuance_block_time": 1729676245, "supply_normalized": "0.00000000" } ], @@ -3527,8 +3600,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -3536,16 +3609,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -3553,16 +3626,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -3570,16 +3643,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -3587,16 +3660,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -3604,8 +3677,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729601940, - "last_issuance_block_time": 1729601956, + "first_issuance_block_time": 1729676228, + "last_issuance_block_time": 1729676245, "supply_normalized": "0.00000000" } ], @@ -3616,17 +3689,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_hash": "368bce41026988a4c2d9d125cc610b0c72fcbf30d797954f7e641691048b5b5e", - "block_time": 1729602219, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_time": 1729676536, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09:1", + "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3662,23 +3735,23 @@ }, { "tx_index": 58, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_hash": "708d1d1fd72e3e0e5444fd2cfccefd7c2f3d7e13a6111c842f8c8eb2b2bfc1aa", - "block_time": 1729602215, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_time": 1729676532, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4652ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "supported": true, - "utxos_info": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064:1", + "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "status": "valid" } }, @@ -3686,17 +3759,17 @@ }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 191, - "block_hash": "66c525624f0b1ba75357e6898f2f148d4111857fd965d10a20869fc70c82095b", - "block_time": 1729602211, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", + "block_time": 1729676529, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db:1", + "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3732,17 +3805,17 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "block_hash": "5c53b62b9c32fab14ce34f13f54b37334a290b022745d5a7a42e5ea84bf67fb1", - "block_time": 1729602207, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", + "block_time": 1729676525, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038038fec635c374c266372b6968b0a02a296ddd4ed7802e51247ea36b7fab2b86b8be0ce05e5b9022030f80eddb83e7d0005a90f0f03950a23b9675325ea37c400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151:0", + "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3750,14 +3823,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -3765,7 +3838,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3784,17 +3857,17 @@ }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 185, - "block_hash": "5e44846d5adef2e033681729f97aadd0b7b0103716d315468d14e990e6580b69", - "block_time": 1729602185, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "block_hash": "4678438d531d366bd7f01f6ede3df70e9db91dc424373fca2f438a3df4a362e3", + "block_time": 1729676493, + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2:1", + "utxos_info": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3836,20 +3909,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -3871,9 +3944,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3888,7 +3961,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3914,9 +3987,9 @@ }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -3931,7 +4004,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3957,9 +4030,9 @@ }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3974,7 +4047,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4000,9 +4073,9 @@ }, { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4017,7 +4090,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4048,10 +4121,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4076,7 +4149,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729602062, + "block_time": 1729676370, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4085,10 +4158,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4113,7 +4186,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729601977, + "block_time": 1729676266, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4125,10 +4198,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4153,7 +4226,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729601960, + "block_time": 1729676249, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4165,10 +4238,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4193,7 +4266,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729601956, + "block_time": 1729676245, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4205,10 +4278,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4233,7 +4306,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4251,22 +4324,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4275,22 +4348,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", + "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601973, + "block_time": 1729676262, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4299,22 +4372,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", + "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601969, + "block_time": 1729676258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4323,22 +4396,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", + "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601964, + "block_time": 1729676253, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4347,22 +4420,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "1b4e9f9ff7be0393355aec7e38bdd23b47bbf42a5a0290bc14c43551890db392", + "tx_hash": "e83cd173d758ac4ea36a12f4f880822982c60251e411b0aa9148cfd9a326e9e3", "tx_index": 15, "block_index": 127, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601944, + "block_time": 1729676232, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4371,22 +4444,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4401,22 +4474,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4434,7 +4507,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4446,7 +4519,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "0200000000010108ffbd840f67c6edf401c49c9c82438eda1917743609167a889eb63afc727f0e00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2963059221f1b8824ace1e3873dc651f88455364598fab2597e6ccf3f4b9a44c70d4e432039c4399f0909bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "0200000000010162c45bad425beecec12cc2a9ca4f5315c387826145d6a45546a01d1886ba352900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a2990a72937e70bc5f113ac3827a6a5294ca19212d92d2c07d7df826d17fd73b91af39bfeea8f7b8785939bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4464,23 +4537,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" }, "name": "btcpay", - "data": "434e5452505254590b0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd22d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "data": "434e5452505254590bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101a782f0234bce03c0b11158e191cc0d0433babee0109ae84bdeb3aba252c8675600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03b80b000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1700000000000000004b6a498288789f515d1bb5032dd32111fe168e2433ebcc6950efa1442e193f8f41f5345d61f5b9a258fe6e511a04a5bfad54936e6224751260379cc67d3734eb3e48eda2ecc68ddea1cb2e72c79f052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101ca3dd74955b50643f446e9909bc5b1a3ab0c2c218c5d49d455f48ce793beb7dc00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03b80b000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4000000000000000004b6a49dc1ccaa3c1c37cc2902315bb927e3c7c038cd76ab599298df6b167e755138f5a62fec320b353f317a4f0a7c7bec679e31a6d0d88d56c3f7c63b68ceebf8cba94342880071d1e70d5bcc79f052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "status": "valid" } } @@ -4489,7 +4562,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "quantity": 1000, "overburn": false }, @@ -4499,27 +4572,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "020000000001014ef3d4404221ab9315fb6c5444cf82bb583ecfb084251ef97ca34edbae16c6cb00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000" + "rawtransaction": "020000000001013db53be4a3eae0e006d8b354dfdfe36144be6a9934e8c97524ba1c2e5b1b3ea400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09" + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2" }, "name": "cancel", - "data": "434e545250525459467630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "data": "434e54525052545946b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001017fe0437e945dcc564c73eb51bee85d7d782dd0eddb133550e6dca9ea2bdfd71300000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff0200000000000000002b6a2905d0b3d189f0b731bfedd052237bb8b82c81d17f9a2b31225aa9a6769101db8e9094a56d3669432c799bba052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101bbf641b3e888f7a4d43b98e4c5af4c1d9e6927cae72f2f3630b728fa96d4a02c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a29f496f21b1eca393d02cf8b23e78c4d3ff109484e9959d0cb642bc43144a8b12e30fc983ad9a8117e2a9bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "status": "valid" } } @@ -4528,7 +4601,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4547,7 +4620,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101d24176d35d15c0c64fd0a2bea51dfbc9d60ca2b26cf261aeb7767013cef1e66200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000226a2018ce351b3a2d666577ed418ef24798859b5f3ef30990199f9c781f87f70a67eaaabc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "0200000000010149e5b9dc0e1cff0a9103562ecc167474fc106f2bbbbde6fc324aacde2bfd123300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000226a20f28eb2bac2653a8f699370fa1805ae1242189b83557b0f9fd5b8bb768839520faabc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4563,7 +4636,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4587,7 +4660,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "0200000000010154660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb02000000160014fb134d3d7db65283c8a6d438f34c982c5f90936fffffffff0200000000000000002c6a2a549b3501ee943fd845cb0c32042fd8b35c7a2feb92ed8865841b0d97db283ba5753f0e78b422acc675deb0540a2701000000160014fb134d3d7db65283c8a6d438f34c982c5f90936f02000000000000", + "rawtransaction": "020000000001015685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e0200000016001486c9fb8df4e113364217345a534ec15df1190f17ffffffff0200000000000000002c6a2a1935d51ef9e5b27c0e1451de25963157772aea1b5905cdbcfdb18d3764b6e62b7dcaae924832cb73e9e9b0540a270100000016001486c9fb8df4e113364217345a534ec15df1190f1702000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4609,14 +4682,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4635,7 +4708,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101d8c4c7ca24ecc925dfff6352da967b9326c03eb1906ab886919bded2abe7645000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a21826287520ae74b4395832fb5f75c8aa1f94f8a58242f3b1a0f9726295a33ecdcfe6fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101872c6c3ec6138433f8c1378244c8558aef4f8533b1e08a697773a8c4364bf85100000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a21e9bbed14b458a585a162116b2ae9500f830a103a11f465cf4c8d642ef4b400657d6fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4652,10 +4725,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "transfer_destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "lock": false, "reset": false, @@ -4668,7 +4741,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "02000000000101ce38cdd53573bedc5bb1f948419d3953a9654114eee982a68de762c873b0c36100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff032202000000000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f170000000000000000236a2196fbac094f71586091ed88706db05cd6050bb5c6283bddbd6ea1812f34408d15f185b2052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101fda9079f396d38513093ada76ea35a408817499a7377d1d08cb8972097d11f3900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff032202000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe400000000000000000236a21733dfb10f894efc1be24aef7868cefb96bd548b065b903aa9a586304cb505bb81b85b2052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4693,16 +4766,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", 1 ], [ "MYASSETA", - "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", 2 ] ], @@ -4710,26 +4783,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280ac259a46ca7b25183c056dd8cd8af381d44a2f178038fec635c374c266372b6968b0a02a296ddd4ed78f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280a93fd6c7f82cb65d01526fb0bd722052b7bbbe4080a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a08f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001049cd344441140c46f917f15ba952bac7f8227a94f3a4282d0fa2476ab222c1a8c00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffbe4a736276a43a4b7abbb7fe913a3c8bc38e7aa16d8a669156061057d292b07800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc648578dee845a752850522212788f7c351bdcacf276d26ae90d11d14e51dfcf00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffee5f3b21ba6dd74da11f4c89159f2f25d0ce6c0d8ac2e88b7ac7379f6664540600000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff03e80300000000000069512102c3ab41cae66da68f202687d09adb3f7ca89bf217704cae6966149734e6ae84e121023262b4cece3529d5e634e59ad8c971a96047e28befd36c4057219173159a2eac2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee80300000000000069512102ccab41cae66da68f2005f0bd681b7ec7ccd189326465308f09f91dc7677ace8c21031d757cf630f31c1692f68badf3a01919c06dc9e6329dbbcf7569f41f79f5021f2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353ae14f316a804000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000000000000", + "rawtransaction": "020000000001047b7bfe587dcda93d9713fc88e04d24cbf97873e426fdcc402408aaa6bf01a52800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff11619d5e7f43b77a607e930f61da33d275dff38e60b723867751a58e82bc623c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff7be57b1008cd09b99f2ca24a82345ec77645d3baebb3e96cd23e8f5838b994000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff05978b3a4b921825331be01454a7376625376e9a91ffdc2fb3a927ba1b56ba800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03e803000000000000695121020f57dca4a9f74e84dec2301613495740c79f8d4fb56c80769294f63918b130432103cf6056ec0e32494c87278e8e06efa5da2234f0c4e01fd22d9ff1cb5e722d05b22102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee803000000000000695121030057dca4a9f74e84dee1477be18c0cb722e7a1f9e4784992950984194a068bf2210271209e48c3cb5cb91b9865c57e07513d4e72395e14eb72a2bdb9ae321e42291f2102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53ae14f316a804000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4741,7 +4814,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4758,7 +4831,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4772,7 +4845,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101d2a317377493a48aba4c05a001333e1d2fa9f4818e2481c011f1d5f5c5a03f5900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000356a33e3b5d6136200359688929a3110401601a0ddcb814d2760f4651a79e959e2b835da038ea7599ab30e3bf782bb04419e73be1ea251b8052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101433eadc0edf5b7cefd578f11554272bbf42a644362d61d5fe5465987d42676cf00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000356a33a4ef143202f486cceb19adbd0e85012db02ed34f788f304fdbc0fe5755e7d4862eddd9d960acdbab2f3892347abc7f7638808e51b8052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4794,8 +4867,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4811,19 +4884,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88038fec635c374c266372b6968b0a02a296ddd4ed7", + "data": "434e54525052545902000000000000000100000000000003e880a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101d91b95e2af0e759026b39536b8d83d628e9314271eea6860dfa956b7a6b6282900000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000306a2e2950d4e1fc0dd540d5f278dec7b04e96a99861303add9ea4a945ba9ee2a2583a20883d365c670414057492c85f9a76b9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "0200000000010117bf3b309d9630bf3f0e84fe559eacc8d5a6e32aef85b15075b6ed0ea0d6155300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000306a2e89b60557a071ae01fdb862ec619dec6f0d106b4ce192f645d9ae12b825de732a8bed2d297c5ba3d107326569cf2176b9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "memo": null, "quantity_normalized": "0.00001000" } @@ -4833,23 +4906,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e545250525459048038fec635c374c266372b6968b0a02a296ddd4ed707ffff", + "data": "434e5452505254590480a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a007ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001017786d3501ed9ef5b4ca6dc705e8c039f80ccb211135ab9bbc9923e98078534e700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000236a2184674740b5b0f99d218985f45e23d863809271cb8600aacece0008ea137f7911046fbc052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101d60c2d0ddc9e26befe48be5c6e24bfd12c71cc34abbc86563f37dff3af69984000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a218b3a953d59e8907878471f7b425d69856b99c4ba2238bda2718f46b18e5b171b716fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "flags": 7, "memo": "ffff" } @@ -4859,8 +4932,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "quantity": 1000 }, "name": "dispense", @@ -4869,7 +4942,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "020000000001019e4b2fbf2d349f6c6c57054e5de72e0b4c780ef93523945f88f43aed10db23240200000016001438fec635c374c266372b6968b0a02a296ddd4ed7ffffffff03e803000000000000160014eddb83e7d0005a90f0f03950a23b9675325ea37c00000000000000000c6a0a0ae4e55812233125b6bee3c108270100000016001438fec635c374c266372b6968b0a02a296ddd4ed702000000000000", + "rawtransaction": "02000000000101a3bfca2ebb0faa9c14138ee50bf6e214917fdbf925174732500b08939a753ec502000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0ffffffff03e803000000000000160014389cf1fc21f030356a2b4839e8cb66dc9bd69abb00000000000000000c6a0a4042de1bdd819cf3ab7ae3c1082701000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a002000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4882,7 +4955,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4913,7 +4986,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001016a3a6d618c3ead34bc319dc018f0d051586f2e259fa42660f2bc7a6a066a286700000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000316a2fdec4b9ede8f883ab4ee822133ca3b693166b1f24bd104d4e823e0a8af0a21ddc301b3b2848e0bdd8a066823ef125503bb9052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "02000000000101d5c1ee92578cdbdcf9dd649b183ea3f7f6b5ab1cf3df5e8edb923c1f5ce5569400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000316a2f5cd4db22bff2776492381cc77cb6f615b6c51adba1bebeec7aa599d8a8157c82815cb055f6cb32aec4849c1e84289a3bb9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -4942,13 +5015,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -4960,7 +5033,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101dd111d12df8c39285b8ace3682a283cf4874caaab255e9a14da8804dc497abc200000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff020000000000000000166a1443cd9b301bc366950c02348363c7b1ad53163ee269bf052a01000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000000000000", + "rawtransaction": "020000000001011dea0fc0b53aa42dd0ca9b92139b3e2a5116b14a15695b2fab8d485df396eaef00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000166a14a5fabf63183d92aecc01fa0aac4bc21bd4ba271f69bf052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -4974,8 +5047,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "8c32a5c1a559eed083b384033937e0cec0e967c56c14796497e17c4161299e0e:0", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -4988,12 +5061,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c386333326135633161353539656564303833623338343033333933376530636563306539363763353663313437393634393765313763343136313239396530653a307c5843507c31303030", + "data": "434e5452505254596462637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c643833643931643963316264323237373666396664323234383632383032313766366561613531376534353965643635656139346333396134333630333066653a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "02000000000106f5a2b62967bd65039d97d29bd3a94877b0b0de59b32025147b5f6c5e8132e7b800000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffe1995dc3a8191a0505ef3ac97b883bbb25629eb48b31dbf439592003d1ecc52f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff7e06a3147b917a4999361e47a49460876a4258e7cb7363858b68b76af222324f00000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffdc8453ed5e287bf6546e839890aea7f94e330af8cf7df3f44e438ee9ee0a8df500000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffedbfb9e4bb42eb01119d8d42ba4a03458f689ee821a27881f1f31f7a229c8d9100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffffc206e3af5eae8c71f82f37241ca041a4f91a68d1ac2b03ceb422b4ecefe7279100000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f17ffffffff04e803000000000000695121034eadd003803ba7735e862367431591400f1d4114c4bc78b3eefe4c78812965822102e71b08bb2f74f0534ce46d7f8231c47833603ff9fe34a0ee80fccae388e1cc112103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee803000000000000695121034eadd003803ba7735ed320310458c5545f5e134293bc2bb5eebb1572c12e71fb2103ee1c05ae697cb30d15f4607b9835842c623a6fb7bd26e2a5dbabc8e7d8e6966a2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aee8030000000000006951210264add003803ba7735edb2434545b904d632d7b0dc0bf23b1de88264bf21914622102de7f60cd59198a3b2297554dfb04b01b5b0c5b8e8a43d392b89ff9d1e9d4afda2103946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f2353aec36d22fc06000000160014ac259a46ca7b25183c056dd8cd8af381d44a2f1702000002000002000002000002000002000000000000", + "rawtransaction": "020000000001062c92de96c3a1ea98037441c9b744faa2c97bd0210779e3e8a1b1d608a4c4213600000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffebe944bcf4c1e6110250fec5bc506e138ad6648ad18dca5716943bb6e675165d00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff10eb5d88e92219d6bab593805ed69f61715c931852217e3b7dee268782ed0d4200000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff2a60802243d7d3a05a125b316afaef836b1a19ed336b552fb82047d5ea5cc96700000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffc7b650628836e3373316f0c9443199619628e53855f459d508911108ee70289500000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffffe3060439ac394ea65ed59e417a5eaf61702288624d29f6f7722bdc1d9913dd800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff04e80300000000000069512103cabc784abacae5bbe594202f9720f1ea6274ba16379537fb949f017a133e4bfe21025fa52c6ae703b3ae81c7b3e4c70d02c2fe29a1379203d15bc304c3ff1203e0d42102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512103cabc784abacae5bbe5c9217d8730f2a9613ae0116ac03faa9fc15475177749f1210207f02c6fa550a7fcc5c4b6ec9e500bcdeb6dfc66980f8d44940591af1804b4b62102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512102e0bc784abacae5bbe5c3722a806ef0e70e4e860b62966ba8adf56c43254f79c0210235c11b099335c69df0f58189aa6532a88f5bc903f936b927a73cf09b2b3284952102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aec36d22fc06000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5006,8 +5079,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5020,12 +5093,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964303831623335313938393239383466623064336465633161636366346539396136393831373039623265393762303966626538356466373363393135383063313a307c62637274317134736a6535336b3230766a3373307139646876766d7a686e73383279357463686c64777477737c5843507c31303030", + "data": "434e54525052545964363366306161666336636266393665393932353135346366613961336138393464643136643431623331363462306436323532396663663566383231666433613a307c62637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "02000000000103dce0f921f3ad21ad1b1a53ff971aa8738e7794a49688f396a1a68cb653cd12130100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff54660b5eb519ec4234e6e9839dc0f30a2aa86bc65ade38a0aa288132133d5deb0000000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff8914ffcf77cbcf749ab000a2443eacec67b03c6e0175d3e2b0cdc11f4b2afcc90100000016001492b5051f546edf56f17f264039d77d86944357d2ffffffff04e8030000000000006951210272314ec7fdd8cdfa9fe6976c7b2d79bf8b56e42efd164f661960f4aa470038ed21038a81d5ab9bcfde0ca766b2b8c18992734b61ec9242f6ee8e89907725a9b3ac642103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210372314ec7fdd8cdfa9fe6c163792c73bb8f57ec74fe15472e1d61b6ba451569f721039adad1fdcbc2d859e835e0fdc8c09a20132ef8cd5da7b79f819b6872b8e8f13a2103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53aee8030000000000006951210258314ec7fdd8cdfa9feec3233e3839f6e22c8c6bfe1f47627f02c4ce74645de22103e9b0b4c8f8a9ea699e5fd38ef8b1a3447b588ea027cfd9ecb9a91147cc8b99792103c717b8d9ec7f7908d9f62287c0c008ad7fff14bed21037248ff82ca1872e811c53ae11780b270100000016001492b5051f546edf56f17f264039d77d86944357d202000002000002000000000000", + "rawtransaction": "02000000000103852a7f4972fb917f233819e6f76928bbbae6daafe61d416318b90141a4d9dcad010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff5685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e000000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffffade892b34664b10a48b7c7f577788e97c429a2026f7f497be1bd76302220166a010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff04e803000000000000695121031bdf29ca92c5de3326fd9e4df90bb86c335837e22b8602ba2f5f5f8535f1a29921034f479966d01f9c637829d4156299e8762b4201379b8e4a235c72ae3434209ff8210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee803000000000000695121021bdf29ca92c5de3326ffcb18aa5de13f645d65b228da0bf0280514c331b1a373210202489e63da12cc3b2a7dd947779ab47628101732df8b0f735e7bf56e3178d7e3210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee8030000000000006951210231df29ca92c5de3326ebc04af40eb1710d7851fd78d00bbc4a6666b700c0978721037b24ff07e97eaf024010e07106a8de121f736304aab87e416c1698060112a697210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953ae11780b27010000001600141a4276a941acf906f7f9539bb10d51d26ee94e4002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5041,8 +5114,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -5050,16 +5123,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729602075, - "last_issuance_block_time": 1729602084, + "first_issuance_block_time": 1729676383, + "last_issuance_block_time": 1729676392, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "owner": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "owner": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "divisible": true, "locked": false, "supply": 100000000000, @@ -5067,16 +5140,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729602071, - "last_issuance_block_time": 1729602071, + "first_issuance_block_time": 1729676379, + "last_issuance_block_time": 1729676379, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 100000000000, @@ -5084,16 +5157,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729602032, - "last_issuance_block_time": 1729602032, + "first_issuance_block_time": 1729676330, + "last_issuance_block_time": 1729676330, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 40, @@ -5101,16 +5174,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729601977, - "last_issuance_block_time": 1729601981, + "first_issuance_block_time": 1729676266, + "last_issuance_block_time": 1729676270, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 19, @@ -5118,8 +5191,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729601960, - "last_issuance_block_time": 1729601973, + "first_issuance_block_time": 1729676249, + "last_issuance_block_time": 1729676262, "supply_normalized": "0.00000019" } ], @@ -5131,8 +5204,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 10000000000, @@ -5140,15 +5213,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729601923, - "last_issuance_block_time": 1729601936, + "first_issuance_block_time": 1729676212, + "last_issuance_block_time": 1729676224, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5156,14 +5229,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5171,7 +5244,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5184,7 +5257,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5206,9 +5279,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5223,7 +5296,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5249,9 +5322,9 @@ }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5266,7 +5339,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5292,9 +5365,9 @@ }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5309,7 +5382,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5335,9 +5408,9 @@ }, { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5352,7 +5425,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5378,9 +5451,9 @@ }, { "tx_index": 52, - "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5395,7 +5468,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5426,13 +5499,13 @@ "/v2/assets//matches": { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5446,7 +5519,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5466,13 +5539,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5486,7 +5559,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5506,13 +5579,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "tx0_index": 49, - "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 50, - "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5526,7 +5599,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5553,20 +5626,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5574,20 +5647,20 @@ }, { "block_index": 125, - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", + "event": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5595,20 +5668,20 @@ }, { "block_index": 124, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5616,20 +5689,20 @@ }, { "block_index": 124, - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "event": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5641,16 +5714,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5668,12 +5741,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -5685,16 +5758,16 @@ }, { "block_index": 195, - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "event": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602228, + "block_time": 1729676545, "asset_info": { "divisible": true, "asset_longname": null, @@ -5706,16 +5779,16 @@ }, { "block_index": 194, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "divisible": true, "asset_longname": null, @@ -5727,16 +5800,16 @@ }, { "block_index": 194, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "divisible": true, "asset_longname": null, @@ -5748,16 +5821,16 @@ }, { "block_index": 193, - "address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "asset_info": { "divisible": true, "asset_longname": null, @@ -5775,20 +5848,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -5810,14 +5883,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", + "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -5832,20 +5905,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -5860,20 +5933,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -5888,20 +5961,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -5916,7 +5989,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729601923, + "block_time": 1729676212, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -5928,10 +6001,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -5939,7 +6012,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -5952,10 +6025,10 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5963,7 +6036,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -5976,10 +6049,10 @@ }, { "tx_index": 55, - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", "block_index": 189, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -5987,7 +6060,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602202, + "block_time": 1729676520, "asset_info": { "divisible": true, "asset_longname": null, @@ -6000,10 +6073,10 @@ }, { "tx_index": 44, - "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", + "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", "block_index": 157, - "source": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", - "destination": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", + "destination": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6011,7 +6084,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602071, + "block_time": 1729676379, "asset_info": { "divisible": true, "asset_longname": null, @@ -6024,10 +6097,10 @@ }, { "tx_index": 43, - "tx_hash": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489", + "tx_hash": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad", "block_index": 156, - "source": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", - "destination": "c9fc2a4b1fc1cdb0e2d375016e3cb067ecac3e44a200b09a74cfcb77cfff1489:0", + "source": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", + "destination": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6035,7 +6108,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602066, + "block_time": 1729676375, "asset_info": { "divisible": true, "asset_longname": null, @@ -6054,9 +6127,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6065,7 +6138,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6075,7 +6148,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -6091,9 +6164,9 @@ }, { "tx_index": 29, - "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", + "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", "block_index": 142, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6102,7 +6175,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6112,7 +6185,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602006, + "block_time": 1729676304, "asset_info": { "divisible": true, "asset_longname": null, @@ -6128,9 +6201,9 @@ }, { "tx_index": 30, - "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", + "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", "block_index": 150, - "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", + "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6138,10 +6211,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6149,7 +6222,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602041, + "block_time": 1729676339, "asset_info": { "divisible": true, "asset_longname": null, @@ -6165,18 +6238,18 @@ }, { "tx_index": 33, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6186,7 +6259,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -6207,9 +6280,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6218,7 +6291,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6228,7 +6301,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -6256,7 +6329,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6264,7 +6337,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6273,7 +6346,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6281,7 +6354,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6290,7 +6363,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6298,7 +6371,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6307,7 +6380,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6322,27 +6395,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6357,7 +6430,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -6371,27 +6444,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", + "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", "block_index": 147, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6406,7 +6479,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602028, + "block_time": 1729676326, "asset_info": { "divisible": true, "asset_longname": null, @@ -6420,19 +6493,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6440,7 +6513,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6455,7 +6528,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -6469,19 +6542,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6489,7 +6562,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6504,7 +6577,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -6525,8 +6598,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "owner": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false, "supply": 0, @@ -6534,8 +6607,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729602080, - "last_issuance_block_time": 1729602080, + "first_issuance_block_time": 1729676388, + "last_issuance_block_time": 1729676388, "supply_normalized": "0.00000000" } ], @@ -6545,10 +6618,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6573,7 +6646,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6591,22 +6664,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "f88647d8427b99f5487164e0770bfa6d74d0b68c33f8749551c523c4b6e323f4", + "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", "tx_index": 13, "block_index": 125, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6615,22 +6688,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2", + "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601931, + "block_time": 1729676219, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6639,22 +6712,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6669,22 +6742,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "fb2c8afd53e9b017b01dc9cf058870b63b736dc66fa823eeb359f076730620ec", + "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", "tx_index": 11, "block_index": 123, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601927, + "block_time": 1729676215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -6700,9 +6773,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6717,7 +6790,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6743,9 +6816,9 @@ }, { "tx_index": 52, - "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6760,7 +6833,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6786,9 +6859,9 @@ }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6803,7 +6876,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6829,9 +6902,9 @@ }, { "tx_index": 54, - "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "block_index": 188, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6846,7 +6919,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6872,9 +6945,9 @@ }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6889,7 +6962,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6920,9 +6993,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6937,7 +7010,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6965,13 +7038,13 @@ "/v2/orders//matches": { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6985,7 +7058,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7005,13 +7078,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7025,7 +7098,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7052,15 +7125,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "btc_amount": 2000, - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "status": "valid", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "btc_amount_normalized": "0.00002000" } ], @@ -7071,9 +7144,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "block_index": 187, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7091,7 +7164,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729602194, + "block_time": 1729676502, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7117,9 +7190,9 @@ }, { "tx_index": 54, - "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "block_index": 188, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7137,7 +7210,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7163,9 +7236,9 @@ }, { "tx_index": 49, - "tx_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", + "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", "block_index": 184, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7183,7 +7256,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602113, + "block_time": 1729676422, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7209,9 +7282,9 @@ }, { "tx_index": 51, - "tx_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "block_index": 188, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7229,7 +7302,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602198, + "block_time": 1729676506, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7255,9 +7328,9 @@ }, { "tx_index": 57, - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", "block_index": 192, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7275,7 +7348,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602215, + "block_time": 1729676532, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7306,13 +7379,13 @@ "/v2/orders///matches": { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7329,7 +7402,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7349,13 +7422,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7372,7 +7445,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7392,13 +7465,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "tx0_index": 49, - "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 50, - "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7415,7 +7488,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729602113, + "block_time": 1729676422, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7441,13 +7514,13 @@ "/v2/order_matches": { "result": [ { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 54, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7461,7 +7534,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7481,13 +7554,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "tx0_index": 51, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 52, - "tx1_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7501,7 +7574,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729602194, + "block_time": 1729676502, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7521,13 +7594,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", + "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", "tx0_index": 49, - "tx0_hash": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx1_index": 50, - "tx1_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7541,7 +7614,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729602113, + "block_time": 1729676422, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7586,66 +7659,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", + "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", "block_index": 121, - "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", + "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729601918, + "block_time": 1729676208, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "1d3ad1a09fefd93cfd842d392f108a9ea07b46139667d21bf1217e0e8d148a31", + "tx_hash": "e5536dd615707c7c3db9ed85b0ee4e26962ef522412e53a7583562bf53f9bed6", "block_index": 120, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729601914, + "block_time": 1729676204, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "555f50a768779c0d5ceb16845a5ea91b5eeafd59cbc9563cb38f704eaa33a5d2", + "tx_hash": "3da47037f73ceafc5ffae318453f303e77b32ea545da24985f5790a260c54bea", "block_index": 119, - "source": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4", + "source": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729601910, + "block_time": 1729676199, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "65d709a2aba05390e14cb46ed39a7a07f84423f10d6660b114679ff31fce6f11", + "tx_hash": "27f9b9e7d012e6e75b08b1d7a450dc3b17b2d14eb4b123e83087b367364ba3d0", "block_index": 118, - "source": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729601906, + "block_time": 1729676195, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d9c549fae7b7a5caf16608715bc92a38295e98811bbd0a8d2aef7435697db5d7", + "tx_hash": "4ba484c83bb8ab87d399d82e60a5a70b07df9458db02638f11b6bfec48060b5a", "block_index": 117, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729601902, + "block_time": 1729676191, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7657,9 +7730,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7668,7 +7741,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7678,7 +7751,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -7694,9 +7767,9 @@ }, { "tx_index": 29, - "tx_hash": "6ac771ab19a443b311f9e5967384b1de81080ca2f0e17cdc8ee8f73a29ba5412", + "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", "block_index": 142, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7705,7 +7778,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7715,7 +7788,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602006, + "block_time": 1729676304, "asset_info": { "divisible": true, "asset_longname": null, @@ -7731,9 +7804,9 @@ }, { "tx_index": 30, - "tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", + "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", "block_index": 150, - "source": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", + "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7741,10 +7814,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d2b9c72a5c7c922abb7f0e36345935d1436b2844a1939580975f14d6a8c8e26", - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7752,7 +7825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602041, + "block_time": 1729676339, "asset_info": { "divisible": true, "asset_longname": null, @@ -7768,18 +7841,18 @@ }, { "tx_index": 33, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7789,7 +7862,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -7810,9 +7883,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7821,7 +7894,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7831,7 +7904,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -7851,19 +7924,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7871,7 +7944,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7886,7 +7959,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -7900,19 +7973,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7920,7 +7993,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7935,7 +8008,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -7954,20 +8027,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -7988,20 +8061,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -8024,12 +8097,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "tx_index": 41, - "utxo": "2a92016d3288f219803f5b461f77e021ac834f9163d8936396f343eb21bf8e80:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "utxo": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "divisible": true, "asset_longname": null, @@ -8041,16 +8114,16 @@ }, { "block_index": 154, - "address": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "address": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "divisible": true, "asset_longname": null, @@ -8071,27 +8144,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 561, @@ -8100,14 +8173,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8118,9 +8191,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 560, @@ -8129,9 +8202,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -8141,24 +8214,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8168,9 +8241,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 558, @@ -8182,15 +8255,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } }, "/v2/events/counts": { @@ -8225,16 +8298,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8244,9 +8317,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 557, @@ -8256,12 +8329,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8271,9 +8344,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 554, @@ -8283,39 +8356,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", - "utxo_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "block_time": 1729602237, + "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "divisible": true, "asset_longname": null, @@ -8325,36 +8398,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "block_time": 1729602224 + "block_time": 1729676541 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729602224, + "block_time": 1729676541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "block_time": 1729602224 + "block_time": 1729676541 } ], "next_cursor": 536, @@ -8371,27 +8444,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8406,7 +8479,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8420,27 +8493,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", + "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", "block_index": 147, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "destination": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "last_status_tx_hash": null, - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8455,7 +8528,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729602028, + "block_time": 1729676326, "asset_info": { "divisible": true, "asset_longname": null, @@ -8469,19 +8542,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e59cb98add6ee863614443a48d572c6fffc7e1a8874115e53a08fc10d9be92dd", + "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8489,7 +8562,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8504,7 +8577,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729602002, + "block_time": 1729676300, "asset_info": { "divisible": true, "asset_longname": null, @@ -8518,19 +8591,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "ab4c1f82c36b083db487e3e3d5266022c8463fdc186f776b4bdf3c17f3c561d0", + "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", "block_index": 140, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "4e020e826d12284aec97d6f678dc41d5042f8389f9ecb0f5dd327b7df4c3447a", + "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8538,7 +8611,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8553,7 +8626,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729601998, + "block_time": 1729676286, "asset_info": { "divisible": true, "asset_longname": null, @@ -8572,10 +8645,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8583,7 +8656,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8596,10 +8669,10 @@ }, { "tx_index": 62, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8607,11 +8680,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -8620,10 +8693,10 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8631,7 +8704,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -8644,10 +8717,10 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8655,11 +8728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -8668,10 +8741,10 @@ }, { "tx_index": 56, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8679,11 +8752,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -8698,14 +8771,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -8720,20 +8793,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7a8105add6d422a7fa2adb57e6c3d60595602af74e93d1b71eba06e8e2a876ec", + "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -8748,20 +8821,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729602084, + "block_time": 1729676392, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "ec5da8cbb7bd92dc08b477db4d4fd12bdb855fb36d51e797e475824ed51a4a2c", + "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -8776,20 +8849,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602080, + "block_time": 1729676388, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "684ac9e3926cdeeada1bc54400d6e683ac66b8e80183103aba321f25bac9da42", + "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -8804,20 +8877,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602075, + "block_time": 1729676383, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", + "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "issuer": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "transfer": false, "callable": false, "call_date": 0, @@ -8832,7 +8905,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602071, + "block_time": 1729676379, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8843,14 +8916,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "transfer": false, "callable": false, "call_date": 0, @@ -8865,7 +8938,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8874,16 +8947,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], @@ -8894,16 +8967,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" } ], @@ -8914,9 +8987,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "block_index": 138, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8924,14 +8997,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601990, + "block_time": 1729676278, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "c9b14c91a0733ebb7be30ea2def30af39b0f91889f0c55bc16c5568e7bda36ce", + "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", "block_index": 137, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -8939,7 +9012,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601986, + "block_time": 1729676274, "fee_fraction_int_normalized": "0.00000000" } ], @@ -8949,9 +9022,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "block_index": 138, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8959,17 +9032,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729601990, + "block_time": 1729676278, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -8994,7 +9067,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729602062, + "block_time": 1729676370, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9003,10 +9076,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9031,7 +9104,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729601977, + "block_time": 1729676266, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9043,10 +9116,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9071,7 +9144,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729601960, + "block_time": 1729676249, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9083,10 +9156,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9111,7 +9184,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729601956, + "block_time": 1729676245, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9123,10 +9196,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f3c7b80d771dcae68547c61b2409aed31246cd1b2c7c306d49cd7b52bf970420", + "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9151,7 +9224,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729601936, + "block_time": 1729676224, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9169,22 +9242,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9193,22 +9266,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "49037eda225a1728083f7eec5106bfd90fdedf0b12b76d02ab2d2f296e9ebfd5", + "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", "tx_index": 21, "block_index": 134, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601973, + "block_time": 1729676262, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9217,22 +9290,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fc1e8f2bcb132afcb089384374625e950f11afa44044023295559cdd426c0276", + "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", "tx_index": 20, "block_index": 133, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601969, + "block_time": 1729676258, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9241,22 +9314,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "de43590ebe1a11bce4b7160d40e8439ec872fe6ab1eb2899e008abeb0fab38e1", + "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", "tx_index": 19, "block_index": 132, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "32574ca876c49757c6982f2eb2a40e68f34abf8ab49af311bf3de8982a941754", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601964, + "block_time": 1729676253, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9265,22 +9338,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "8aab2952776b8e585c7b8c0de38a82736ba4f3b1389a94782a6a9464edacba10", + "tx_hash": "2295039e748f4b0d70a7e6dfa7d556337e04c3837b1ec2bb63210dfcdd27213f", "tx_index": 17, "block_index": 129, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "fairminter_tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601953, + "block_time": 1729676241, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9294,22 +9367,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, "block_index": 136, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -9326,8 +9399,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654", - "address": "bcrt1qlvf560takefg8j9x6su0xnyc930epym0584w5c" + "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", + "address": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95" }, { "vout": 2, @@ -9335,8 +9408,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299", - "address": "bcrt1qnvm3cg6z6924cuwlypppj5lq8zj86hxwn5fzl4" + "txid": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", + "address": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74" } ], "next_cursor": null, @@ -9345,28 +9418,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "9a55e6d3e0a8444e2506c0165584a0c088cf5c7fd47e14fc83902b53a4a64251" + "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29" }, { - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f" + "tx_hash": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057" }, { - "tx_hash": "fcfd0fc820a5d2c8bfefe898c6057bfda1c3ef32f726d5fcb147e25d7a5a6396" + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667" }, { - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7" + "tx_hash": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86" }, { - "tx_hash": "bf131856848fc9eb62aa07eb3aa5fc54f8deec756e015f59ae5d7d98a00c6bb2" + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" }, { - "tx_hash": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6" + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2" }, { - "tx_hash": "32672931a02684000f17b86fda9849e961825e0d6049ba2f3d427517d0e1ebbf" + "tx_hash": "db4eedd503a3a78611f54a1df9483686777f866a745f7644adae81d1e2fa9fbf" }, { - "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3" + "tx_hash": "47bf5a24eb83c74d78bffde051f355092efbe4ab6b951f01bedf5a607268a2eb" } ], "next_cursor": null, @@ -9374,8 +9447,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 8, - "tx_hash": "9de1943fcf1147bb5df342d8691b323c13457a25336bb16a008c1940b1a7dd75" + "block_index": 1, + "tx_hash": "0979edfa8c2f003fdd07c0d012947833cf66d9395d51d971bc624b4b7c203472" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9386,17 +9459,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "eb5d3d13328128aaa038de5ac66ba82a0af3c09d83e9e63442ec19b55e0b6654" + "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03946a7cce486b557c7aeea7692d9134ddba55c2c0a99972a253d141df01e83f23" + "result": "02e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010199f235875cfd49f760882fcaa4b278fa0374987369cda7d7b42e789d0854890d0100000000ffffffff03e80300000000000016001492b5051f546edf56f17f264039d77d86944357d200000000000000000c6a0a022a7d05ec02a8bad228dced08270100000016001407c1b21a0d36c635f4040393f57e2dc791018c2202473044022031fe513ea57ee002932b62f19bdfb20d9ad85e8e09a4d9831434f4cd1ef13b8b022025fb71583669e27f6c0d24e883cd5064cd7d4f41ab14fe85ec0b9032a1906149012103ddb31ff5cc13c44a222b3cea61fa6131163a5a06fd8f30f1c38b0fe85b68a2ea00000000" + "result": "02000000000101ec5ecb5505352fabe1e553387612aead6cd063550a2e97d5776fa1fa9e809deb0100000000ffffffff03e8030000000000001600141a4276a941acf906f7f9539bb10d51d26ee94e4000000000000000000c6a0a5e7a06c5f66b6d5b1703dced08270100000016001474ddbc39c1f0f36185e16375629f2623c46061c802473044022071a2783b88cda714f84ce3a1d8ba5080f13dc91eb0725c4c619a11df84853ad902206321ea29901ce9346a49536059adec2a4d5c6ae5b9e0fda1084e0957d0fec8b801210269ff0be68bd0b9d62624826865b687dce119a43371f72e17b31b86ad0df3e42c00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9419,27 +9492,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63 }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "quantity": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, "asset_info": { "divisible": true, @@ -9450,22 +9523,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -9475,22 +9548,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 196, - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -9500,30 +9573,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729602242.0374818, + "block_time": 1729676559.013981, "btc_amount": 0, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "destination": "", "fee": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, - "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", + "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -9537,7 +9610,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, @@ -9546,19 +9619,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -9568,7 +9641,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, @@ -9577,27 +9650,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63 }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "quantity": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, "asset_info": { "divisible": true, @@ -9608,22 +9681,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "CREDIT", "params": { - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -9633,22 +9706,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "asset": "XCP", "block_index": 196, - "event": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -9658,30 +9731,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 }, { - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729602242.0374818, + "block_time": 1729676559.013981, "btc_amount": 0, - "data": "0200000000000000010000000000002710802e51247ea36b7fab2b86b8be0ce05e5b9022030f", + "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", "destination": "", "fee": 10000, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", - "tx_hash": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", "tx_index": 63, - "utxos_info": "98163ffbc1f5026d0df581d11c3a75ac0e74300342c8c972b6189e5f1f38c43c:1", + "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "memo": null, "asset_info": { "divisible": true, @@ -9695,7 +9768,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729602242.0374818 + "timestamp": 1729676559.013981 } ], "next_cursor": null, @@ -9717,15 +9790,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", "block_index": 196, - "block_time": 1729602237, + "block_time": 1729676554, "difficulty": 545259519, - "previous_block_hash": "24f1b537963f90216fde78496565b40fa23dbb9d7baa3fff32c1d27e6a10e107" + "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327" }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 544, @@ -9737,17 +9810,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7971b18fb27bb23e364c11091f15591957aa8290c06acc604faf2e62486ff7aa", + "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", "block_index": 196, - "block_time": 1729602237, + "block_time": 1729676554, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "fee": 0, - "source": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "utxos_info": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1 081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9757,9 +9830,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 545, @@ -9773,16 +9846,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "out_index": 0, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 277, @@ -9795,15 +9868,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "5838dc109fe3573b3e35f87b4834dba9097a6b2c104d342e97f3068fc4263d71", - "messages_hash": "8d1d9fa730d92e3666ffea35e9cc35a12a8f65cc121170141256301cc17c8034", + "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", + "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", "transaction_count": 1, - "txlist_hash": "b538d5b6cc051d2b33a0b4e2d59f56b6211c0ec3c0cc0a60fdbbdce2f9e201db", - "block_time": 1729602237 + "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", + "block_time": 1729676554 }, "tx_hash": null, "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 549, @@ -9816,12 +9889,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62 }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 548, @@ -9837,12 +9910,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 1500000000, "tx_index": 62, - "utxo": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", - "utxo_address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", - "block_time": 1729602237, + "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -9852,9 +9925,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 553, @@ -9866,16 +9939,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -9885,9 +9958,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 557, @@ -9901,14 +9974,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "memo": null, "quantity": 10000, - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "status": "valid", - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", "tx_index": 55, - "block_time": 1729602202, + "block_time": 1729676520, "asset_info": { "divisible": true, "asset_longname": null, @@ -9918,9 +9991,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "f430c7fb242a5cb96931bb8eca4d3cda7148eb184d8464a5dbfd69a3cc53df7f", + "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", "block_index": 189, - "block_time": 1729602202 + "block_time": 1729676520 } ], "next_cursor": null, @@ -9934,15 +10007,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "tx_index": 56, - "block_time": 1729602207, + "block_time": 1729676525, "asset_info": { "divisible": true, "asset_longname": null, @@ -9952,9 +10025,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "22cb5a496a3b237aa00b7fe0d0187dc724a22322387e0132f8cce4437fa06151", + "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", "block_index": 190, - "block_time": 1729602207 + "block_time": 1729676525 } ], "next_cursor": 509, @@ -9977,20 +10050,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "status": "valid", - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "tx_index": 60, - "block_time": 1729602224, + "block_time": 1729676541, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "36b81022027e6a54e9b6e1fd784d37ca4b2653864a19973685e01b67b5e93ca7", + "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", "block_index": 194, - "block_time": 1729602224 + "block_time": 1729676541 } ], "next_cursor": null, @@ -10007,15 +10080,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "tx_index": 41, - "block_time": 1729602058, + "block_time": 1729676356, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10029,9 +10102,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "70271dd64396e209c93663a50183c02b4b8852ededef11f0c4fb8f44a5d38e18", + "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", "block_index": 154, - "block_time": 1729602058 + "block_time": 1729676356 } ], "next_cursor": null, @@ -10052,11 +10125,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729602088 + "block_time": 1729676396 }, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "block_index": 161, - "block_time": 1729602088 + "block_time": 1729676396 } ], "next_cursor": 381, @@ -10079,22 +10152,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", "transfer": false, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "tx_index": 48, - "block_time": 1729602088, + "block_time": 1729676396, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "60b2ae0eaa451109c3f5a182bfb69ebb1241a0cc884540baacb287ed42350b9d", + "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", "block_index": 161, - "block_time": 1729602088 + "block_time": 1729676396 } ], "next_cursor": 388, @@ -10109,12 +10182,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qahdc8e7sqpdfpu8s89g2ywukw5e9agmuqavmsj", + "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", "status": "valid", "tag": "64657374726f79", - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "tx_index": 61, - "block_time": 1729602228, + "block_time": 1729676545, "asset_info": { "divisible": true, "asset_longname": null, @@ -10124,9 +10197,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "d8ef24068e5b60c3245ac7f1e6e385575a9a13917056c995f983543688ea5bfc", + "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", "block_index": 195, - "block_time": 1729602228 + "block_time": 1729676545 } ], "next_cursor": 157, @@ -10151,11 +10224,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "open", - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "tx_index": 59, - "block_time": 1729602219, + "block_time": 1729676536, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10179,9 +10252,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "7630c5321bc744fc0273f7cfc1e936d7905414f28be5bdf1f185336c1f6e0b09", + "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", "block_index": 193, - "block_time": 1729602219 + "block_time": 1729676536 } ], "next_cursor": 516, @@ -10199,20 +10272,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2", + "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", "tx0_index": 51, - "tx1_address": "bcrt1q9egjgl4rddl6k2uxhzlqecz7twgzyqc0tsaaut", + "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "tx1_index": 54, - "block_time": 1729602198, + "block_time": 1729676506, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10231,9 +10304,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2d7763f1572e416f0ad44e82b0f11d3f6d82a40e30cf6fcf2a03858222faf8e3", + "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", "block_index": 188, - "block_time": 1729602198 + "block_time": 1729676506 } ], "next_cursor": 475, @@ -10246,11 +10319,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db" + "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c" }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 } ], "next_cursor": 490, @@ -10263,11 +10336,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b" + "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3" }, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_time": 1729602194 + "block_time": 1729676502 } ], "next_cursor": null, @@ -10279,13 +10352,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", + "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", "status": "completed" }, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_time": 1729602194 + "block_time": 1729676502 } ], "next_cursor": 454, @@ -10299,18 +10372,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "order_match_id": "0906b104dd7ec895c8d9aa45aba997d2fc9818177401accb439f96295bb7ecd2_8dae5563da17d9f722d183158ca838d084ae7c3a289605b358614fa5dde0018b", - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "status": "valid", - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "tx_index": 53, - "block_time": 1729602194, + "block_time": 1729676502, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "2423db10ed3af4885f942335f90e784c0b2ee75d4e05576c6c9f342dbf2f4b9e", + "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", "block_index": 187, - "block_time": 1729602194 + "block_time": 1729676502 } ], "next_cursor": null, @@ -10323,16 +10396,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "52ebf94bd1704f38ed1b8da2f918b7e3b807f07a383f7ed9410d429f258667db", - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "tx_index": 58, - "block_time": 1729602215 + "block_time": 1729676532 }, - "tx_hash": "f7ad898fce80bff0a2dac02022ac124dc2200b48ad4c9a8f2faff8a818f0b064", + "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", "block_index": 192, - "block_time": 1729602215 + "block_time": 1729676532 } ], "next_cursor": null, @@ -10345,13 +10418,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "block_time": 1729602113 + "order_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "block_time": 1729676422 }, "tx_hash": null, "block_index": 184, - "block_time": 1729602113 + "block_time": 1729676422 } ], "next_cursor": 460, @@ -10364,14 +10437,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "fea65c2d56f45e06a0830a68358073e751d0873ada5d6bfbfff203490d9b3e04_fc39df4012e35c3df4923000da4300c72af0d80c50c1d617d05f0ee0e2cb0c46", - "tx0_address": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "tx1_address": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", - "block_time": 1729602113 + "order_match_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "block_time": 1729676422 }, "tx_hash": null, "block_index": 184, - "block_time": 1729602113 + "block_time": 1729676422 } ], "next_cursor": null, @@ -10389,14 +10462,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "origin": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "satoshirate": 1, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "tx_index": 33, - "block_time": 1729602023, + "block_time": 1729676321, "asset_info": { "divisible": true, "asset_longname": null, @@ -10409,9 +10482,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "block_index": 146, - "block_time": 1729602023 + "block_time": 1729676321 } ], "next_cursor": 254, @@ -10426,9 +10499,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": 0, - "tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", + "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", "asset_info": { "divisible": true, "asset_longname": null, @@ -10438,9 +10511,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 302, @@ -10454,13 +10527,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mnVoGusDT8JutSWfBYdZnUjehtG8AhwCcs", + "destination": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", "dispense_quantity": 10, - "dispenser_tx_hash": "37c953e6d040de6680db227707c24c2dcdb9f1d6463aa9c51052aa475a3209f0", - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", - "tx_hash": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", + "dispenser_tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx_hash": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", "tx_index": 31, - "block_time": 1729602015, + "block_time": 1729676313, "asset_info": { "divisible": true, "asset_longname": null, @@ -10470,9 +10543,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "d3cf34bef1d2a4b445ae9410f03efd9df7ef9cbed645428c8fad6afc26cb7cfe", + "tx_hash": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", "block_index": 144, - "block_time": 1729602015 + "block_time": 1729676313 } ], "next_cursor": null, @@ -10487,14 +10560,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qqlqmyxsdxmrrtaqyqwfl2l3dc7gsrrpzqu0dvt", + "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1312cd53b68ca6a196f38896a494778e73a81a97ff531a1bad21adf321f9e0dc", - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -10505,9 +10578,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 280, @@ -10522,19 +10595,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qj26s2865dm04dutlyeqrn4mas62yx47jy2q66g", + "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "tx_index": 25, "value": 66600.0, - "block_time": 1729601990, + "block_time": 1729676278, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "540e676af3e60f592f0ee6cc764ffef80945209654a76e7cdba9f017f49ae5eb", + "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", "block_index": 138, - "block_time": 1729601990 + "block_time": 1729676278 } ], "next_cursor": 213, @@ -10565,12 +10638,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "start_block": 0, "status": "open", - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "tx_index": 42, - "block_time": 1729602062, + "block_time": 1729676370, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10578,9 +10651,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "91ada276bb4ddcc84ba2bafdbd4afaccb61422acdbe969b3d7d171b52a4f6bde", + "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", "block_index": 155, - "block_time": 1729602062 + "block_time": 1729676370 } ], "next_cursor": 196, @@ -10593,11 +10666,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "06cb331d61a340183d8b6425eb893142186386e4ed0ae7ef7344891755a93216" + "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b" }, "tx_hash": null, "block_index": 130, - "block_time": 1729601956 + "block_time": 1729676245 } ], "next_cursor": 110, @@ -10613,17 +10686,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "0dcf6d5bda9c93669907fe2aa900262180a2e7fd864dfc7d142447c8c6b8e0cd", + "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", "paid_quantity": 34, - "source": "bcrt1q8rlvvdwrwnpxvdetd95tpgp299ka6nkh8ghg9u", + "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", "status": "valid", - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "tx_index": 23, - "block_time": 1729601981, + "block_time": 1729676270, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, @@ -10631,9 +10704,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "10718899e93729d4209b7a4116e79efe6701cf49461d8e51ea5df0547fe97fc1", + "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", "block_index": 136, - "block_time": 1729601981 + "block_time": 1729676270 } ], "next_cursor": 190, @@ -10647,28 +10720,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c:1", + "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "status": "valid", - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "tx_index": 39, - "block_time": 1729602049, + "block_time": 1729676347, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "468b6c43a5e0c506fb6c5054f4d00aabd6e941e7f9828212bf51c4292379e04c", + "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", "block_index": 152, - "block_time": 1729602049 + "block_time": 1729676347 } ], "next_cursor": 296, @@ -10682,28 +10755,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qcas3xgqjus2t6suaqwzkt3z0q975dh6su2zw6p", + "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "b6a80fa7d7d829b2e389d83edcef90057aa7928d1ba03247ead0bcaf04e72eb6:0", + "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", "status": "valid", - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "tx_index": 38, - "block_time": 1729602045, + "block_time": 1729676343, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4sje53k20vj3s0q9dhvvmzhns82y5tchldwtws", + "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ba18e0539850b104f46686b1e40c03613cb6649470754b5fe911af2008c73989", + "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", "block_index": 151, - "block_time": 1729602045 + "block_time": 1729676343 } ], "next_cursor": null, @@ -10717,14 +10790,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1:0", + "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", "msg_index": 1, "quantity": 1500000000, - "source": "0d8954089d782eb4d7a7cd6973987403fa78b2a4ca2f8860f749fd5c8735f299:1", + "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", "status": "valid", - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "tx_index": 62, - "block_time": 1729602237, + "block_time": 1729676554, "asset_info": { "divisible": true, "asset_longname": null, @@ -10734,9 +10807,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "081b3519892984fb0d3dec1accf4e99a6981709b2e97b09fbe85df73c91580c1", + "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", "block_index": 196, - "block_time": 1729602237 + "block_time": 1729676554 } ], "next_cursor": 555, @@ -10751,17 +10824,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qv24y98wg2m7gez7sn0yn6djj3zgpmsk4laqzpw", + "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", "status": "valid", - "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", + "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", "tx_index": 9, - "block_time": 1729601918, + "block_time": 1729676208, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "f2a6ec9225a3fbf6edb644234bbea66373e729176162f65eed01ab4cea0f3a8f", + "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", "block_index": 121, - "block_time": 1729601918 + "block_time": 1729676208 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 7a1b7ce4db..1c5e16b34c 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -484,8 +484,9 @@ def generate_regtest_fixtures(db): 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") + cursor.execute("SELECT block_index, tx_hash FROM fairmints ORDER BY rowid DESC LIMIT 1") row = cursor.fetchone() + regtest_fixtures["$LAST_FAIRMINT_BLOCK"] = row["block_index"] regtest_fixtures["$LAST_FAIRMINT_TX_HASH"] = row["tx_hash"] # get utxo from bitcoin-cli diff --git a/dredd.yml b/dredd.yml index 395fb7cb96..6b1c5c48e6 100644 --- a/dredd.yml +++ b/dredd.yml @@ -19,6 +19,8 @@ only: - Blocks > Get Sends By Block > Get Sends By Block - Blocks > Get Dispenses By Block > Get Dispenses By Block - Blocks > Get Sweeps By Block > Get Sweeps By Block +- Blocks > Get Fairminters By Block > Get Fairminters By Block +- Blocks > Get Fairmints By Block > Get Fairmints By Block - Transactions > Get Transactions > Get Transactions - Transactions > Info > Info - Transactions > Info By Tx Hash > Info By Tx Hash diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index c65f74d55d..fa2d3d5db0 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -20,6 +20,12 @@ Backwards-incompatible change ## API - `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` +- Add the following routes: + * `/v2/blocks//fairminters` + * `/v2/blocks//fairmints` +- Add `status` argument for Fairminters routes +- Made `/blocks/last` faster by adding an index to the `ledger_hash` field +- `/v2/addresses/
/sweeps` now also searches by the `destination` field ## CLI From 339bfb4844c7da358fdd2945213c366028fc4712 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 10:25:13 +0000 Subject: [PATCH 40/71] Add asset_events filter to issuances routes --- apiary.apib | 3662 +++++++++-------- .../counterpartycore/lib/api/queries.py | 79 +- .../test/fixtures/api_v2_fixtures.json | 76 + .../test/regtest/apidoc/apicache.json | 3264 +++++++-------- .../test/regtest/scenarios/scenario_7_utxo.py | 16 +- .../test/regtest/testscenarios.py | 4 +- release-notes/release-notes-v10.5.1.md | 1 + 7 files changed, 3645 insertions(+), 3457 deletions(-) diff --git a/apiary.apib b/apiary.apib index dc2946df68..633dc83f75 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-23 09:42:51.836420. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-23 10:19:08.981353. 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": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", "block_index": 196, - "block_time": 1729676554, + "block_time": 1729678732, "difficulty": 545259519, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327" + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d" }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", "block_index": 196, - "block_time": 1729676554, + "block_time": 1729678732, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "fee": 0, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd: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": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "out_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "block_time": 1729676554, + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "block_time": 1729678732, "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": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "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": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "memo": null, "quantity": 10000, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "status": "valid", - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", "tx_index": 55, - "block_time": 1729676520, + "block_time": 1729678697, "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": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", "block_index": 189, - "block_time": 1729676520 + "block_time": 1729678697 } ], "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": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "tx_index": 56, - "block_time": 1729676525, + "block_time": 1729678701, "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": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "block_time": 1729676525 + "block_time": 1729678701 } ], "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": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "status": "valid", - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "block_time": 1729676541 + "block_time": 1729678718 } ], "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": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "tx_index": 41, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "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": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "block_time": 1729676356 + "block_time": 1729678554 } ], "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": 1729676396 + "block_time": 1729678584 }, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "block_index": 161, - "block_time": 1729676396 + "block_time": 1729678584 } ], "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": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", "transfer": false, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "tx_index": 48, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "block_index": 161, - "block_time": 1729676396 + "block_time": 1729678584 } ], "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": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", "tag": "64657374726f79", - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "tx_index": 61, - "block_time": 1729676545, + "block_time": 1729678723, "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": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "block_index": 195, - "block_time": 1729676545 + "block_time": 1729678723 } ], "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": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "open", - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, - "block_time": 1729676536, + "block_time": 1729678714, "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": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 } ], "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": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "tx0_index": 51, - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx1_index": 54, - "block_time": 1729676506, + "block_time": 1729678693, "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": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "block_index": 188, - "block_time": 1729676506 + "block_time": 1729678693 } ], "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": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c" + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694" }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 } ], "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": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3" + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682" }, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_time": 1729676502 + "block_time": 1729678688 } ], "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": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "status": "completed" }, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_time": 1729676502 + "block_time": 1729678688 } ], "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": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "status": "valid", - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "tx_index": 53, - "block_time": 1729676502, + "block_time": 1729678688, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_time": 1729676502 + "block_time": 1729678688 } ], "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": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "tx_index": 58, - "block_time": 1729676532 + "block_time": 1729678710 }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 } ], "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": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "block_time": 1729676422 + "order_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "block_time": 1729678609 }, "tx_hash": null, "block_index": 184, - "block_time": 1729676422 + "block_time": 1729678609 } ], "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": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "block_time": 1729676422 + "order_match_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "block_time": 1729678609 }, "tx_hash": null, "block_index": 184, - "block_time": 1729676422 + "block_time": 1729678609 } ], "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": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "satoshirate": 1, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "tx_index": 33, - "block_time": 1729676321, + "block_time": 1729678510, "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": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "block_index": 146, - "block_time": 1729676321 + "block_time": 1729678510 } ], "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": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "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": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", + "destination": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", "dispense_quantity": 10, - "dispenser_tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "tx_hash": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", + "dispenser_tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx_hash": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", "tx_index": 31, - "block_time": 1729676313, + "block_time": 1729678501, "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": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", + "tx_hash": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", "block_index": 144, - "block_time": 1729676313 + "block_time": 1729678501 } ], "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": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "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": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "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": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "tx_index": 25, "value": 66600.0, - "block_time": 1729676278, + "block_time": 1729678476, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "block_index": 138, - "block_time": 1729676278 + "block_time": 1729678476 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "start_block": 0, "status": "open", - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "block_index": 155, - "block_time": 1729676370 + "block_time": 1729678558 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b" + "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052" }, "tx_hash": null, "block_index": 130, - "block_time": 1729676245 + "block_time": 1729678442 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "paid_quantity": 34, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "status": "valid", - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "block_index": 136, - "block_time": 1729676270 + "block_time": 1729678468 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "tx_index": 39, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "block_index": 152, - "block_time": 1729676347 + "block_time": 1729678546 } ], "next_cursor": 296, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", + "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", "status": "valid", - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "tx_index": 38, - "block_time": 1729676343, + "block_time": 1729678541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "block_index": 151, - "block_time": 1729676343 + "block_time": 1729678541 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "msg_index": 1, "quantity": 1500000000, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "status": "valid", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 555, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", + "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", "status": "valid", - "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", + "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", "tx_index": 9, - "block_time": 1729676208, + "block_time": 1729678403, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", + "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", "block_index": 121, - "block_time": 1729676208 + "block_time": 1729678403 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", "difficulty": 545259519, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", - "block_time": 1729676545, - "previous_block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", + "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_time": 1729678723, + "previous_block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", "difficulty": 545259519, - "ledger_hash": "9dcfe7a47c2fb360eca9a969852773a92eb5d2328a23345228c403354af37d58", - "txlist_hash": "6ac7a3af202cec00be8c7cfa322e5e97f9077b483223528eda4c7e8d0296dc31", - "messages_hash": "5df8ba2ff2bd0457f3880a370b32eecdd9f820c4452a683cbc9f0949ab177108", + "ledger_hash": "0728fdaf217c1411e9f56f3419b4f416747787fc2e86f89daa50d5af665493f1", + "txlist_hash": "6572814c5fe9125c42aa6cc779395eb58bd4d41c1cc7eb81747f0ac3f926faf8", + "messages_hash": "f35d7ce946e7c5dfa6f6dfa9a786fbbc324d87db48f8a2449c91a8fceb03333d", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", - "block_time": 1729676541, - "previous_block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", + "block_time": 1729678718, + "previous_block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", "difficulty": 545259519, - "ledger_hash": "398017b47f606f3af4e227c3aa64fbfd03eaf0cf158624b1e32e7d49f3e340e5", - "txlist_hash": "3cb1a0afed67ac326473a882776bdaca17ef79331404cf28167b2a56fa88bf9e", - "messages_hash": "e4439bd0b7b14dbafee2ef7a5ec521016d25c27a3baf03401b13bb0570d09e7a", + "ledger_hash": "15098994debc66645d87036ccdc04dff1d8a3e5048cdff460d706ca30786d3e2", + "txlist_hash": "d087cfb215356510fac7478fcdd9b4ab4db014d2e5203f6ca55a2fa9697234fd", + "messages_hash": "963ec904da3f72f664e2b4423a4115b8627779bb149ce30e2e405711a90c4c23", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", - "block_time": 1729676536, - "previous_block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_time": 1729678714, + "previous_block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", "difficulty": 545259519, - "ledger_hash": "3cbb4062bbc678878b0ece16d25494730be1241a6a73aad4d849e33e29a8a23f", - "txlist_hash": "10dfdf6d781ecb009da71df3e63cb856426299120d035c5e3e9f5095c19b0fab", - "messages_hash": "b3abe98e60f148ec273bbc35053c4232381a565ef2e4aa4c1ff10508e0956db0", + "ledger_hash": "09f10cc67e15d319daf6cf589285749418a57620dcb6771b2b320e9284927e2a", + "txlist_hash": "a230bad99dc8551fae755e954f0d7b8e09e78e2672bdea23bcb57c6b420fbdde", + "messages_hash": "564b85500289945fdf7375ae5ed38b9c262d5b490de5487065be0deccd7902a3", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", - "block_time": 1729676532, - "previous_block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", + "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_time": 1729678710, + "previous_block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", "difficulty": 545259519, - "ledger_hash": "ed83ed864ac6951beac860bebebb75d09e9e42c8add81f1c1bb438bef8c273fc", - "txlist_hash": "31bbc916b4ec2281e696dc3eeea7fb9721f62693801bd5fb4b19aedd71f6ca9d", - "messages_hash": "26ef1835d6506ff745e6aa6db046666020c84948d6819b1f66c3e3ade2789b90", + "ledger_hash": "ce03a8bb04d981ec6d0dfcdfcfc590c97a12e17cf39f57ce7ece44447d0f30ba", + "txlist_hash": "59935866d0083a9a32180b40bafb4e44f06627556a1c6106b71855f4dee5af6e", + "messages_hash": "bb2b9603965517fa8be7af0413e406828e177c12598220cf53ed3306f8223723", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", "difficulty": 545259519, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b` (str, required) - The index of the block to return + + block_hash: `012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", "difficulty": 545259519, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 561, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 560, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" } ], "next_cursor": 558, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 557, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 554, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "object_id": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "block_index": 184, "confirmed": true, - "block_time": 1729676422 + "block_time": 1729678609 }, { "type": "order", - "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, "confirmed": true, - "block_time": 1729676422 + "block_time": 1729678609 }, { "type": "order_match", - "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "block_index": 184, "confirmed": true, - "block_time": 1729676422 + "block_time": 1729678609 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "status": "valid", "confirmed": true, - "block_time": 1729676532 + "block_time": 1729678710 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "block_index": 195, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729676545, + "block_time": 1729678723, "asset_info": { "divisible": true, "asset_longname": null, @@ -2292,12 +2292,25 @@ Returns the destructions of a block } ``` -### Get Issuances By Block [GET /v2/blocks/{block_index}/issuances{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Issuances By Block [GET /v2/blocks/{block_index}/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns the issuances of a block + Parameters + block_index: `161` (int, required) - The index of the block to return + + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + + Default: `all` + + Members + + `all` + + `creation` + + `reissuance` + + `lock_quantity` + + `reset` + + `change_description` + + `transfer` + + `open_fairminter` + + `fairmint` + + `lock_description` + cursor (str, optional) - The last index of the issuances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of issuances to return @@ -2316,14 +2329,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2351,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2372,10 +2385,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2396,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2409,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2420,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2449,27 +2462,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2497,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2538,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2586,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2614,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2651,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2692,17 +2705,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "block_index": 138, - "block_hash": "2ab8ddd64271b87ed253bc483db1397113c4145ac8b86384b53f6a939c1ab8fa", - "block_time": 1729676278, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "06e27cbb53b5e681170e67c387a6656535af9d116bbb336fca2678454338750f", + "block_time": 1729678476, + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f:1", + "utxos_info": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2740,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_hash": "2e8fa43b31410e6856113665bac1c83985e16b3a8a748c12dd18eb51a2d209cb", - "block_time": 1729676502, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "2170ee5e48491e98a338e25f7a4770fd917dea480c2e47ffed408c5139ada59c", + "block_time": 1729678688, + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "btc_amount": 2000, "fee": 10000, - "data": "0bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "data": "0b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f970b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "supported": true, - "utxos_info": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3:0", + "utxos_info": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "status": "valid" } }, @@ -2760,23 +2773,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", - "block_time": 1729676532, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_time": 1729678710, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "supported": true, - "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", + "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "status": "valid" } }, @@ -2791,17 +2804,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "block_index": 195, - "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", - "block_time": 1729676545, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_time": 1729678723, + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4:1", + "utxos_info": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2844,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "block_index": 146, - "block_hash": "1d8c0b2549ff871ec3b7cf4cb1a3a69524e2e69c1a524131bfb6f67f78f2df3c", - "block_time": 1729676321, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "1f819699f7b95d52763cdcd81d4ccd2c51d1ff850af10bf6be211e2f30846303", + "block_time": 1729678510, + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100801a4276a941acf906f7f9539bb10d51d26ee94e40", + "data": "0c00000000000000010000000000000001000000000000271000000000000000010080fb3d8d057149cec7e3810d8fdbc2072a6f911942", "supported": true, - "utxos_info": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85:1", + "utxos_info": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2853,7 +2866,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": "valid", "asset_info": { "divisible": true, @@ -2877,17 +2890,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2920,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "block_hash": "763b565c90f10299464411af203518b92cd64af9ee19948703cbd893cce7322b", - "block_time": 1729676356, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "229fa4bd1fd3441bd6f0f183afc0b8d049e09695e1bc8171c1ced10c6ad7126d", + "block_time": 1729678554, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8:1", + "utxos_info": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2943,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2955,17 +2968,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "block_index": 161, - "block_hash": "69de4c1dd2251d21970813cafe073b3643ba8e4c7e16d44528cb6b59164bd499", - "block_time": 1729676396, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "62f27ceb5af2642de9e08c3b08fe5612bce3083e5b5c187b5ab4f93abf24ecaf", + "block_time": 1729678584, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c:1", + "utxos_info": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +3010,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", - "block_time": 1729676536, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_time": 1729678714, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", + "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3063,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", "block_index": 189, - "block_hash": "398106a907b4611e76de11db42120f856dad6f632952313839f539c0e66f51cd", - "block_time": 1729676520, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "block_hash": "7d5df3ca8281881710774df9836471620d48e7a86ebc404df7793b6d84f5f823", + "block_time": 1729678697, + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080389cf1fc21f030356a2b4839e8cb66dc9bd69abb", + "data": "020000000000000001000000000000271080ba169e41ef98c76eb1b6b1f4740ff07f576f45f1", "supported": true, - "utxos_info": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2:1", + "utxos_info": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,7 +3081,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "memo": null, "asset_info": { "divisible": true, @@ -3091,17 +3104,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", - "block_time": 1729676525, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", + "block_time": 1729678701, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", + "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3122,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -3124,7 +3137,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3150,23 +3163,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", - "block_time": 1729676541, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", + "block_time": 1729678718, + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480389cf1fc21f030356a2b4839e8cb66dc9bd69abb017377656570206d7920617373657473", + "data": "0480ba169e41ef98c76eb1b6b1f4740ff07f576f45f1017377656570206d7920617373657473", "supported": true, - "utxos_info": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667:1", + "utxos_info": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3212,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3235,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "block_index": 195, - "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", - "block_time": 1729676545, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_time": 1729678723, + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4:1", + "utxos_info": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3264,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03014200ffffffff0200f2052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe400000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03013900ffffffff0200f2052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da0000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,7 +3303,7 @@ Returns Counterparty information from a raw transaction in hex format. { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "014200", + "script_sig": "013900", "sequence": 4294967295, "coinbase": true } @@ -3298,7 +3311,7 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 5000000000, - "script_pub_key": "0014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40" + "script_pub_key": "0014d5dfbe27ae299c5fd959d4d431b265cb285f92da" }, { "value": 0, @@ -3309,8 +3322,8 @@ Returns Counterparty information from a raw transaction in hex format. "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe", - "tx_id": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe" + "tx_hash": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e", + "tx_id": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e" } } } @@ -3321,7 +3334,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff` (str, required) - Transaction hash + + tx_hash: `81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f` (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. @@ -3332,18 +3345,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "55c67f194fd4987d50f9414a51e3d352d06746d21fd60d54124e2e93d3c6e5f8", + "hash": "5bc03f229c6ccefcf29003757c8025d21e5d86112a624da855ec77f9e3f27e64", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3353,20 +3366,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2efb55cf9708665e83703ddaf6990bae645d7df6d910369af9ec09cee0ce82efedc199e1e27411b421e1c6dff2caa0" + "script_pub_key": "6a2e43458907eb92d54733b9b266605ca86b0d67d5fe32271ee78f78ed7757e9b327dbdaea94547ce86ed5582a2ab79b" }, { "value": 4999955000, - "script_pub_key": "0014389cf1fc21f030356a2b4839e8cb66dc9bd69abb" + "script_pub_key": "0014ba169e41ef98c76eb1b6b1f4740ff07f576f45f1" } ], "vtxinwit": [ - "3044022073f2e04ac9876ade564fb6688b56c4e326b933e06e68b2134a23b89eac3993fa02201604e88618738b36cf449e53d0a4457fea6fdc69867431aaceef1be3b839024801", - "02ffb386606fe3569f0bd57b21acea3bb5debb97764165fcaba274dc4f81cdf82f" + "304402207b2c0b966059a47e6a2dfcebe1ed067326f6978612b540b76744a1195fe547410220253f7dc140443139a42df054e688ea5bdbef7ff953c4f57294d37d2bb830760e01", + "03147bff7b2e3b1267a4dfbbbdc8c96cc069c34d6583fd5e6ec2dd84d81dceb2ff" ], "lock_time": 0, - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", - "tx_id": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff" + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_id": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3374,7 +3387,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -3435,17 +3448,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3464,7 +3477,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (str, required) - The hash of the transaction + + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (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. @@ -3476,17 +3489,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3529,12 +3542,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 561, @@ -3543,14 +3556,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3561,9 +3574,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 560, @@ -3572,9 +3585,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -3584,24 +3597,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3611,9 +3624,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 558, @@ -3621,14 +3634,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "msg_index": 1, "quantity": 1500000000, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "status": "valid", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3638,9 +3651,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 557, @@ -3653,7 +3666,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (str, required) - The hash of the transaction to return + + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (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 @@ -3677,12 +3690,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 561, @@ -3691,14 +3704,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3709,9 +3722,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 560, @@ -3720,9 +3733,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -3732,24 +3745,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3759,9 +3772,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 558, @@ -3769,14 +3782,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "msg_index": 1, "quantity": 1500000000, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "status": "valid", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3786,9 +3799,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 557, @@ -3801,7 +3814,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (str, required) - The hash of the transaction to return + + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (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 @@ -3820,10 +3833,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3831,7 +3844,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3844,10 +3857,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3855,11 +3868,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -3877,7 +3890,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (str, required) - The hash of the transaction to return + + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (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 @@ -3897,27 +3910,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3932,7 +3945,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3976,16 +3989,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -3995,9 +4008,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 557, @@ -4007,12 +4020,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -4022,9 +4035,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 554, @@ -4034,24 +4047,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": null, @@ -4064,7 +4077,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (str, required) - The hash of the transaction to return + + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (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` @@ -4086,16 +4099,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -4105,9 +4118,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 557, @@ -4117,12 +4130,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -4132,9 +4145,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 554, @@ -4144,24 +4157,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": null, @@ -4176,7 +4189,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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 @@ -4200,7 +4213,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4210,7 +4223,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4221,7 +4234,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4231,7 +4244,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4242,7 +4255,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4252,7 +4265,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4263,7 +4276,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4273,7 +4286,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4284,7 +4297,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4294,7 +4307,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4311,7 +4324,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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 @@ -4330,17 +4343,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", - "block_time": 1729676536, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_time": 1729678714, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", + "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4376,23 +4389,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", - "block_time": 1729676532, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_time": 1729678710, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "supported": true, - "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", + "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "status": "valid" } }, @@ -4400,17 +4413,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 191, - "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", - "block_time": 1729676529, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", + "block_time": 1729678705, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", + "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4446,17 +4459,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", - "block_time": 1729676525, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", + "block_time": 1729678701, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", + "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4464,14 +4477,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4479,7 +4492,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4498,25 +4511,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_hash": "2e8fa43b31410e6856113665bac1c83985e16b3a8a748c12dd18eb51a2d209cb", - "block_time": 1729676502, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "2170ee5e48491e98a338e25f7a4770fd917dea480c2e47ffed408c5139ada59c", + "block_time": 1729678688, + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "btc_amount": 2000, "fee": 10000, - "data": "0bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "data": "0b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f970b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "supported": true, - "utxos_info": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3:0", + "utxos_info": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "status": "valid" } }, @@ -4533,7 +4546,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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 @@ -4569,11 +4582,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "open", - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4597,24 +4610,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "block_index": 193, - "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729676536, + "block_time": 1729678714, "asset_info": { "divisible": true, "asset_longname": null, @@ -4624,25 +4637,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", "block_index": 193, - "block_time": 1729676536, + "block_time": 1729678714, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, - "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", + "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4674,40 +4687,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "tx_index": 58, - "block_time": 1729676532 + "block_time": 1729678710 }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729676532, + "block_time": 1729678710, "asset_info": { "divisible": true, "asset_longname": null, @@ -4717,9 +4730,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 } ], "next_cursor": 520, @@ -4732,7 +4745,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d,bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0,bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz` (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 @@ -4748,17 +4761,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "quantity": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, "asset_info": { "divisible": true, @@ -4769,22 +4782,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -4794,22 +4807,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 196, - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -4819,30 +4832,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729676559.013981, + "block_time": 1729678736.7024257, "btc_amount": 0, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "destination": "", "fee": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, - "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", + "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -4856,7 +4869,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, @@ -4869,7 +4882,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -4889,7 +4902,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4897,14 +4910,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4912,14 +4925,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4934,7 +4947,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4942,7 +4955,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4959,7 +4972,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -4972,7 +4985,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4997,7 +5010,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5047,16 +5060,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "asset_info": { "divisible": true, "asset_longname": null, @@ -5068,16 +5081,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "event": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "asset_info": { "divisible": true, "asset_longname": null, @@ -5089,20 +5102,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "event": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5110,20 +5123,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", + "event": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676383, + "block_time": 1729678571, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5135,16 +5148,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "event": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "tx_index": 39, - "utxo": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", - "utxo_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "utxo": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "utxo_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "confirmed": true, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5161,7 +5174,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5200,16 +5213,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "asset_info": { "divisible": true, "asset_longname": null, @@ -5221,16 +5234,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676529, + "block_time": 1729678705, "asset_info": { "divisible": true, "asset_longname": null, @@ -5242,16 +5255,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -5263,20 +5276,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5284,16 +5297,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "event": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676493, + "block_time": 1729678670, "asset_info": { "divisible": true, "asset_longname": null, @@ -5314,7 +5327,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address of the feed + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5349,7 +5362,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -5368,9 +5381,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", + "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", "block_index": 137, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5378,7 +5391,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676274, + "block_time": 1729678471, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5392,7 +5405,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -5411,14 +5424,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "b1787afd89597b03aa5b015b1c2ef508d2593f14f453f9c8c865b51422388834", + "tx_hash": "60aca46cf7bda0f914148f4cd3646391dbc2729f7af0733efd7ebbcf9f63e365", "block_index": 112, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729676171, + "block_time": 1729678367, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5433,7 +5446,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -5452,10 +5465,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5463,7 +5476,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -5476,10 +5489,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5487,11 +5500,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5500,10 +5513,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5511,11 +5524,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5524,10 +5537,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "block_index": 152, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5535,11 +5548,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5548,10 +5561,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", + "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", "block_index": 149, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5559,11 +5572,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676334, + "block_time": 1729678533, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5581,7 +5594,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76` (str, required) - The address to return + + address: `bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c` (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 @@ -5600,10 +5613,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "block_index": 151, - "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", - "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", + "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5611,11 +5624,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676343, + "block_time": 1729678541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5633,7 +5646,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -5653,10 +5666,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5664,11 +5677,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5677,10 +5690,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5688,11 +5701,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5701,10 +5714,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "block_index": 152, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5712,11 +5725,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5725,10 +5738,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", + "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", "block_index": 149, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5736,11 +5749,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676334, + "block_time": 1729678533, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5758,7 +5771,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76` (str, required) - The address to return + + address: `bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c` (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` @@ -5778,10 +5791,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "block_index": 151, - "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", - "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", + "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5789,11 +5802,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676343, + "block_time": 1729678541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5811,7 +5824,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5840,9 +5853,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5851,7 +5864,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5861,7 +5874,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -5886,7 +5899,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -5899,9 +5912,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5910,7 +5923,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5920,7 +5933,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -5942,7 +5955,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -5962,19 +5975,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5982,7 +5995,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5997,7 +6010,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -6011,19 +6024,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6031,7 +6044,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6046,7 +6059,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -6068,7 +6081,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address to return + + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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 @@ -6088,19 +6101,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6108,7 +6121,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6123,7 +6136,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -6137,19 +6150,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6157,7 +6170,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6172,7 +6185,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -6194,7 +6207,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -6215,19 +6228,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6235,7 +6248,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6250,7 +6263,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -6264,19 +6277,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6284,7 +6297,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6299,7 +6312,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -6321,7 +6334,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address to return + + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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` @@ -6342,19 +6355,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6362,7 +6375,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6377,7 +6390,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -6391,19 +6404,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6411,7 +6424,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6426,7 +6439,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -6448,7 +6461,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d` (str, required) - The address to return + + address: `bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0` (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 @@ -6467,16 +6480,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -6485,12 +6498,25 @@ Returns the sweeps of an address } ``` -### Get Issuances By Address [GET /v2/addresses/{address}/issuances{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Issuances By Address [GET /v2/addresses/{address}/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns the issuances of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + + Default: `all` + + Members + + `all` + + `creation` + + `reissuance` + + `lock_quantity` + + `reset` + + `change_description` + + `transfer` + + `open_fairminter` + + `fairmint` + + `lock_description` + cursor (str, optional) - The last index of the issuances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of issuances to return @@ -6509,14 +6535,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -6531,20 +6557,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", + "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -6559,20 +6585,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729676392, + "block_time": 1729678579, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", + "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -6587,20 +6613,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676388, + "block_time": 1729678575, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", + "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -6615,20 +6641,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676383, + "block_time": 1729678571, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -6643,7 +6669,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6658,7 +6684,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The issuer or owner to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -6681,8 +6707,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -6690,16 +6716,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": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -6707,16 +6733,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": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -6724,16 +6750,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": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -6741,16 +6767,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": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -6758,8 +6784,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": 1729676228, - "last_issuance_block_time": 1729676245, + "first_issuance_block_time": 1729678426, + "last_issuance_block_time": 1729678442, "supply_normalized": "0.00000000" } ], @@ -6773,7 +6799,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The issuer to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -6796,8 +6822,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -6805,16 +6831,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": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -6822,16 +6848,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": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -6839,16 +6865,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": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -6856,16 +6882,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": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -6873,8 +6899,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": 1729676228, - "last_issuance_block_time": 1729676245, + "first_issuance_block_time": 1729678426, + "last_issuance_block_time": 1729678442, "supply_normalized": "0.00000000" } ], @@ -6888,7 +6914,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The owner to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -6911,8 +6937,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -6920,16 +6946,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": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -6937,16 +6963,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": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -6954,16 +6980,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": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -6971,16 +6997,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": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -6988,8 +7014,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": 1729676228, - "last_issuance_block_time": 1729676245, + "first_issuance_block_time": 1729678426, + "last_issuance_block_time": 1729678442, "supply_normalized": "0.00000000" } ], @@ -7003,7 +7029,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -7022,17 +7048,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", - "block_time": 1729676536, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_time": 1729678714, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", + "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7068,23 +7094,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", - "block_time": 1729676532, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_time": 1729678710, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "supported": true, - "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", + "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "status": "valid" } }, @@ -7092,17 +7118,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 191, - "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", - "block_time": 1729676529, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", + "block_time": 1729678705, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", + "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7138,17 +7164,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", - "block_time": 1729676525, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", + "block_time": 1729678701, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", + "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7156,14 +7182,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7171,7 +7197,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7190,17 +7216,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 185, - "block_hash": "4678438d531d366bd7f01f6ede3df70e9db91dc424373fca2f438a3df4a362e3", - "block_time": 1729676493, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "37a13a425aabe49af51c4e383cdffd32f73375c4418ae04300e59292b49f5ae7", + "block_time": 1729678670, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a:1", + "utxos_info": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7245,7 +7271,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -7264,20 +7290,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7302,7 +7328,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7331,9 +7357,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7348,7 +7374,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7374,9 +7400,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7391,7 +7417,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7417,9 +7443,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7434,7 +7460,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7460,9 +7486,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7477,7 +7503,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7512,7 +7538,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The source of the fairminter to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7537,10 +7563,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7565,7 +7591,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7574,10 +7600,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7602,7 +7628,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729676266, + "block_time": 1729678464, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7614,10 +7640,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7642,7 +7668,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729676249, + "block_time": 1729678447, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7654,10 +7680,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7682,7 +7708,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729676245, + "block_time": 1729678442, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7694,10 +7720,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7722,7 +7748,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7744,7 +7770,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address of the mints to return + + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7762,22 +7788,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7786,22 +7812,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", + "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676262, + "block_time": 1729678460, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7810,22 +7836,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", + "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676258, + "block_time": 1729678455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7834,22 +7860,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", + "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676253, + "block_time": 1729678451, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7858,22 +7884,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e83cd173d758ac4ea36a12f4f880822982c60251e411b0aa9148cfd9a326e9e3", + "tx_hash": "0ba98ab6cccc8df44723310013e7f8cea8a92cf7f847ff523622f510f450ab0d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676232, + "block_time": 1729678430, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7882,22 +7908,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7916,7 +7942,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address of the mints to return + + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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` @@ -7935,22 +7961,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -7992,8 +8018,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will make the bet + + feed_address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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) @@ -8061,7 +8087,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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) @@ -8117,7 +8143,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8129,7 +8155,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "0200000000010162c45bad425beecec12cc2a9ca4f5315c387826145d6a45546a01d1886ba352900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a2990a72937e70bc5f113ac3827a6a5294ca19212d92d2c07d7df826d17fd73b91af39bfeea8f7b8785939bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101bc158e372acaf77cc139bd5a044fe5c3f9431e90d584b48cba828c9eb87468ec00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a2992aea7460499574a1075a331fb27e9a41f875b491170470ff9b8d6fa676c055374d262dd24ff9f64bb9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8151,8 +8177,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending the payment - + order_match_id: `f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a` (str, required) - The ID of the order match to pay for + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending the payment + + order_match_id: `6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad` (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) @@ -8204,23 +8230,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" }, "name": "btcpay", - "data": "434e5452505254590bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "data": "434e5452505254590b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f96280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101ca3dd74955b50643f446e9909bc5b1a3ab0c2c218c5d49d455f48ce793beb7dc00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03b80b000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4000000000000000004b6a49dc1ccaa3c1c37cc2902315bb927e3c7c038cd76ab599298df6b167e755138f5a62fec320b353f317a4f0a7c7bec679e31a6d0d88d56c3f7c63b68ceebf8cba94342880071d1e70d5bcc79f052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101d2bb52cb559f93f1a4dcd9da75c60b37a55f22fe54bc7a178e72bdd3030d7dda00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03b80b000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da00000000000000004b6a4991bdf4447e8ae99bc910117cd4e0c1f4c9ecd735aa0359e45088839790177a31f1dfa2ad238196453c59a32f1b544eb99e8bd7aa70a8c913456e7a58be3abe4aca4e01017d7cbbd658c79f052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "status": "valid" } } @@ -8233,7 +8259,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address with the BTC to burn + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -8288,7 +8314,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "quantity": 1000, "overburn": false }, @@ -8298,7 +8324,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": "020000000001013db53be4a3eae0e006d8b354dfdfe36144be6a9934e8c97524ba1c2e5b1b3ea400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000" + "rawtransaction": "02000000000101feb91f1f1577b25b907a4589a0e2735db56c82c19834454d2526b0fc042535f500000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000" } } ``` @@ -8308,8 +8334,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3` (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) @@ -8361,21 +8387,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2" + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3" }, "name": "cancel", - "data": "434e54525052545946b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "data": "434e54525052545946b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101bbf641b3e888f7a4d43b98e4c5af4c1d9e6927cae72f2f3630b728fa96d4a02c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a29f496f21b1eca393d02cf8b23e78c4d3ff109484e9959d0cb642bc43144a8b12e30fc983ad9a8117e2a9bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001012be1bfd3a4bc6f40d0ef7358c63a1d717ef4c2048a1ee3036be4220daa3897fb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a29204c1cac4ee322a51b1fa47e446e547ae4519ac1319f04cbe8073cded92846055cba14e3ae40d7528d9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "status": "valid" } } @@ -8388,7 +8414,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -8443,7 +8469,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8462,7 +8488,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "0200000000010149e5b9dc0e1cff0a9103562ecc167474fc106f2bbbbde6fc324aacde2bfd123300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000226a20f28eb2bac2653a8f699370fa1805ae1242189b83557b0f9fd5b8bb768839520faabc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101a038918486b2f8aeb5b1a3632ada819922dd77a8b11db876b7a706c95c52828a00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000226a2007772d9f4be05ada15636d7f0473778e0c7a198f06196c43509a80f9a6f41066aabc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8482,7 +8508,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: `bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn` (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) @@ -8543,7 +8569,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8567,7 +8593,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": "020000000001015685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e0200000016001486c9fb8df4e113364217345a534ec15df1190f17ffffffff0200000000000000002c6a2a1935d51ef9e5b27c0e1451de25963157772aea1b5905cdbcfdb18d3764b6e62b7dcaae924832cb73e9e9b0540a270100000016001486c9fb8df4e113364217345a534ec15df1190f1702000000000000", + "rawtransaction": "020000000001012f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd202000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c3809203ffffffff0200000000000000002c6a2a6f5a2426cd1d4d5a24c9525bf8de62939b34c6ed3eb2ed7f54a45d36356ccb11b7f3e39b57863bcdf06db0540a2701000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c380920302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8593,7 +8619,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -8648,14 +8674,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -8674,7 +8700,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101872c6c3ec6138433f8c1378244c8558aef4f8533b1e08a697773a8c4364bf85100000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a21e9bbed14b458a585a162116b2ae9500f830a103a11f465cf4c8d642ef4b400657d6fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101c4520d589d19701a90b7d9ec6fa39ea967dbdf13c629e3d27d99d0aa451caef200000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21e62fce5636aa2aaa8ab4203a29d020d7fa91ab62b52cd152a407a2826af3827ef86fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8695,10 +8721,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -8759,10 +8785,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "transfer_destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "lock": false, "reset": false, @@ -8775,7 +8801,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": "02000000000101fda9079f396d38513093ada76ea35a408817499a7377d1d08cb8972097d11f3900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff032202000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe400000000000000000236a21733dfb10f894efc1be24aef7868cefb96bd548b065b903aa9a586304cb505bb81b85b2052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101a3eeb9334177683eb3d89ecf3fda3aba9396f930b26572039d481b4fa04944e100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff032202000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da0000000000000000236a21723a052598c88d16fbb9acf530d04edda6bf62f3f53f74932ba7794df13a9e2edf85b2052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8804,9 +8830,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h,bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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` @@ -8863,16 +8889,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", 1 ], [ "MYASSETA", - "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", 2 ] ], @@ -8880,26 +8906,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a93fd6c7f82cb65d01526fb0bd722052b7bbbe4080a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a08f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280d5dfbe27ae299c5fd959d4d431b265cb285f92da806d5956f8352c1ff14ab40ab558c08c35f67ef34d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001047b7bfe587dcda93d9713fc88e04d24cbf97873e426fdcc402408aaa6bf01a52800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff11619d5e7f43b77a607e930f61da33d275dff38e60b723867751a58e82bc623c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff7be57b1008cd09b99f2ca24a82345ec77645d3baebb3e96cd23e8f5838b994000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff05978b3a4b921825331be01454a7376625376e9a91ffdc2fb3a927ba1b56ba800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03e803000000000000695121020f57dca4a9f74e84dec2301613495740c79f8d4fb56c80769294f63918b130432103cf6056ec0e32494c87278e8e06efa5da2234f0c4e01fd22d9ff1cb5e722d05b22102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee803000000000000695121030057dca4a9f74e84dee1477be18c0cb722e7a1f9e4784992950984194a068bf2210271209e48c3cb5cb91b9865c57e07513d4e72395e14eb72a2bdb9ae321e42291f2102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53ae14f316a804000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000000000000", + "rawtransaction": "02000000000104a1d1ae3c7aa89d2e9075cfed6920f7dbf37e555dd499ce0fae61b5c99b61e09300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8b1ebe38e8dd0b05847d2ed187cab08d83cc881fad02dc7ee12e46a4aca2b4cb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff65d9cde3d86f9d8995c94dbc86801fc37547394f359a5cbb22d5b894caef67dd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92dafffffffff9d347dea48f146afafe09609b995b21b27af53731de5bc2d1c1bda83cf40b9000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03e80300000000000069512102e09a32f2f9fdd1081495ff75372c52057042bb569bcb1ea850fcca565a3e32d821030462aa6de63359abd37a897b61eeed2bdb2ef6c30f726e2e85020aef808fc587210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee80300000000000069512102ef9a32f2f9fdd10814b68818c595e99a756c92cac807dcf733ed783391166d8c210396b86200bf65a19eff657031d5e458731ba2c135718123a1a74a6f83ece0e910210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53ae14f316a804000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8915,7 +8941,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -8973,7 +8999,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -8990,7 +9016,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9004,7 +9030,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101433eadc0edf5b7cefd578f11554272bbf42a644362d61d5fe5465987d42676cf00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000356a33a4ef143202f486cceb19adbd0e85012db02ed34f788f304fdbc0fe5755e7d4862eddd9d960acdbab2f3892347abc7f7638808e51b8052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101afb41532a5271bd113380fe2eca418d2ebefc67537ea7e4ba69fbb45c97485a000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000356a33c0a0ea1cdcdcea8771a7ed0159e53c7e87c145c1c79d80c143189350febc202196b3684fe3499d55cc50cd54fc0ae2a2c68b2f51b8052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9030,8 +9056,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address that will be receiving the asset + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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 @@ -9091,8 +9117,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9108,19 +9134,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0", + "data": "434e54525052545902000000000000000100000000000003e8806d5956f8352c1ff14ab40ab558c08c35f67ef34d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "0200000000010117bf3b309d9630bf3f0e84fe559eacc8d5a6e32aef85b15075b6ed0ea0d6155300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000306a2e89b60557a071ae01fdb862ec619dec6f0d106b4ce192f645d9ae12b825de732a8bed2d297c5ba3d107326569cf2176b9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001012e2335c709f9e69e04236ccbdda9f04412633647e93e369f2d071373c261b98e00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000306a2e7f85c498b9ebdc5cbc1cf69ce660bc12eeeab2c1e7bb01dbb5773636c1b1a4a6b337b1e4b819ce115d7d33b8766476b9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "memo": null, "quantity_normalized": "0.00001000" } @@ -9134,8 +9160,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be sending - + destination: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending + + destination: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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 @@ -9189,23 +9215,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a007ffff", + "data": "434e54525052545904806d5956f8352c1ff14ab40ab558c08c35f67ef34d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101d60c2d0ddc9e26befe48be5c6e24bfd12c71cc34abbc86563f37dff3af69984000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a218b3a953d59e8907878471f7b425d69856b99c4ba2238bda2718f46b18e5b171b716fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001018d9ed5eaedf42041d3e5236e4f6c2d97b3323ed4663739d97b835ff31638751400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21c5feb8a12643829353f33e9e64237c94424868e23d4a17ad8585d50b41eaac639a6fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "flags": 7, "memo": "ffff" } @@ -9219,8 +9245,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: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz` (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` @@ -9273,8 +9299,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "quantity": 1000 }, "name": "dispense", @@ -9283,7 +9309,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "02000000000101a3bfca2ebb0faa9c14138ee50bf6e214917fdbf925174732500b08939a753ec502000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0ffffffff03e803000000000000160014389cf1fc21f030356a2b4839e8cb66dc9bd69abb00000000000000000c6a0a4042de1bdd819cf3ab7ae3c1082701000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a002000000000000", + "rawtransaction": "02000000000101f6f3038958ad55e8d94b376dea10b837a5e90d12450e7636e8b602f2dd08962f020000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34dffffffff03e803000000000000160014ba169e41ef98c76eb1b6b1f4740ff07f576f45f100000000000000000c6a0a75fead466b940cccbc7be3c10827010000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9300,7 +9326,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be issuing the asset + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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: `` @@ -9385,7 +9411,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9416,7 +9442,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101d5c1ee92578cdbdcf9dd649b183ea3f7f6b5ab1cf3df5e8edb923c1f5ce5569400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000316a2f5cd4db22bff2776492381cc77cb6f615b6c51adba1bebeec7aa599d8a8157c82815cb055f6cb32aec4849c1e84289a3bb9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001015c241cf3a20d3da5294a5c4d45851da4e2282dfb111062872161e922b09bc0af00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000316a2f5e5b45e8f074107450cf208569d2f9e118b82a67711097f06dc09dfb1cad01405d2f707e19b06d905b841d356af24a3bb9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9449,7 +9475,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address that will be minting the asset + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -9504,13 +9530,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9522,7 +9548,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": "020000000001011dea0fc0b53aa42dd0ca9b92139b3e2a5116b14a15695b2fab8d485df396eaef00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000166a14a5fabf63183d92aecc01fa0aac4bc21bd4ba271f69bf052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001015340508a67369995b825cb0d23e7db98642ef14f6f50d0fac6825bd44ec6544b00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000166a144d3d0169a3b24b20cf61fa28b4c3ba0e3c1ca62b69bf052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9540,10 +9566,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: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address from which the assets are attached + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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: `d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe:0` (str, optional) - The utxo to attach the assets to + + destination: `8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9596,8 +9622,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe:0", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9610,12 +9636,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c643833643931643963316264323237373666396664323234383632383032313766366561613531376534353965643635656139346333396134333630333066653a307c5843507c31303030", + "data": "434e545250525459646263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c386562393631633237333133303732643966333633656539343733363633313234346630613964646362366332333034396565366639303963373335323332653a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001062c92de96c3a1ea98037441c9b744faa2c97bd0210779e3e8a1b1d608a4c4213600000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffebe944bcf4c1e6110250fec5bc506e138ad6648ad18dca5716943bb6e675165d00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff10eb5d88e92219d6bab593805ed69f61715c931852217e3b7dee268782ed0d4200000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff2a60802243d7d3a05a125b316afaef836b1a19ed336b552fb82047d5ea5cc96700000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffc7b650628836e3373316f0c9443199619628e53855f459d508911108ee70289500000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffffe3060439ac394ea65ed59e417a5eaf61702288624d29f6f7722bdc1d9913dd800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff04e80300000000000069512103cabc784abacae5bbe594202f9720f1ea6274ba16379537fb949f017a133e4bfe21025fa52c6ae703b3ae81c7b3e4c70d02c2fe29a1379203d15bc304c3ff1203e0d42102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512103cabc784abacae5bbe5c9217d8730f2a9613ae0116ac03faa9fc15475177749f1210207f02c6fa550a7fcc5c4b6ec9e500bcdeb6dfc66980f8d44940591af1804b4b62102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512102e0bc784abacae5bbe5c3722a806ef0e70e4e860b62966ba8adf56c43254f79c0210235c11b099335c69df0f58189aa6532a88f5bc903f936b927a73cf09b2b3284952102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aec36d22fc06000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000002000002000000000000", + "rawtransaction": "020000000001065cd4d29c2be11e496a618e60f3b64709fa7fa4a1e092a170d10dd6f18bfa73bd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8c33b605f3589de4ccb1135d15e4a867e4f3b36265daf3917eed27c233433f0400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff299e07e8b5a4b237d19e04c335d588674083607bee73d829be9b8d6a409e528300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff7897f7b859ad5eefa08207d5782a38a6413cb26e50b8be7880fb3c03cae5852000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff2b50c1cae4ec7a29d8bb6a2be159f2a7550515dee4a5a3a454172bf7e0b692eb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff3605d21ae1d9467d4259bef5ba77406531dc47926f6edcc5405b0109a7e32ed100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff04e803000000000000695121030608dd0bd650bd2b990cb01688d9fe67e5781da23a6a74255a987e3824c3bee5210282229f02b495620ba68ba594e60bec3977a8a25ac3c066ba8d0eabf15e45b804210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121030608dd0bd650bd2b995ae546cb9eff21e17414a97c3a263706d93d367b9eba8e2102d425c304f2812404a68ab7c2bd51f66072e8af5494d420a08c5bf0ab5f47eed4210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121032c08dd0bd650bd2b995ae1479f97ff6a8b537db37e3c256263e0090148a88c402103e714f130c6e714659feed3a1df67955241d89b6df1b116c6b56bc9c86874db7e210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aec36d22fc06000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9632,8 +9658,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: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to detach the assets to + + utxo: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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 @@ -9687,8 +9713,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9701,12 +9727,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964363366306161666336636266393665393932353135346366613961336138393464643136643431623331363462306436323532396663663566383231666433613a307c62637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c5843507c31303030", + "data": "434e54525052545964303335356530663463386366633862346436366336356532376464663739656630363666313132303630363762386263646335623836363166396333323366643a307c6263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "02000000000103852a7f4972fb917f233819e6f76928bbbae6daafe61d416318b90141a4d9dcad010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff5685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e000000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffffade892b34664b10a48b7c7f577788e97c429a2026f7f497be1bd76302220166a010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff04e803000000000000695121031bdf29ca92c5de3326fd9e4df90bb86c335837e22b8602ba2f5f5f8535f1a29921034f479966d01f9c637829d4156299e8762b4201379b8e4a235c72ae3434209ff8210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee803000000000000695121021bdf29ca92c5de3326ffcb18aa5de13f645d65b228da0bf0280514c331b1a373210202489e63da12cc3b2a7dd947779ab47628101732df8b0f735e7bf56e3178d7e3210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee8030000000000006951210231df29ca92c5de3326ebc04af40eb1710d7851fd78d00bbc4a6666b700c0978721037b24ff07e97eaf024010e07106a8de121f736304aab87e416c1698060112a697210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953ae11780b27010000001600141a4276a941acf906f7f9539bb10d51d26ee94e4002000002000002000000000000", + "rawtransaction": "02000000000103131af70028bd62be68b4696b2820a49affe13885c2899f5b61f781a7ead8439c01000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff2f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd200000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffffa85601cb5725c44a74ee302135a63986e670f990bee5b7cdf6996d120da8fad901000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff04e8030000000000006951210244ac0de221d73fb9d88c257c117bd7a1a930f12f447ee37050db73b4364989fd21026127286fdc7033046ef6b3a5147969514abdb389be922f0b686ea38be6a9cee1210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee8030000000000006951210344ac0de221d73fb9d8d0237915288bf2fc36a1714322b034508c65f6315b896c21033c72772dde75220a2fe4ecf9497d6a5615bdf1cdf8ca210c2639f983fcf79a73210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee803000000000000695121036eac0de221d73fb9d8982c78163fc2ed9747c26b1628b07832ef1782002abf9c210354421a58b81455335793d595224f0f607b8f83bf8ea41869500cc0ef859cac2b210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853ae11780b2701000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194202000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9761,8 +9787,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -9770,16 +9796,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "owner": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "owner": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "divisible": true, "locked": false, "supply": 100000000000, @@ -9787,16 +9813,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729676379, - "last_issuance_block_time": 1729676379, + "first_issuance_block_time": 1729678568, + "last_issuance_block_time": 1729678568, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -9804,16 +9830,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -9821,16 +9847,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -9838,8 +9864,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" } ], @@ -9867,8 +9893,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -9876,8 +9902,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729676212, - "last_issuance_block_time": 1729676224, + "first_issuance_block_time": 1729678408, + "last_issuance_block_time": 1729678421, "supply_normalized": "100.00000000" } } @@ -9908,7 +9934,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9916,14 +9942,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9931,7 +9957,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9949,7 +9975,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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. @@ -9961,7 +9987,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -10015,9 +10041,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10032,7 +10058,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10058,9 +10084,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10075,7 +10101,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10101,9 +10127,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10118,7 +10144,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10144,9 +10170,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10161,7 +10187,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10187,9 +10213,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10204,7 +10230,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10266,13 +10292,13 @@ Returns the orders of an asset { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10286,7 +10312,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10306,13 +10332,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10326,7 +10352,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10346,13 +10372,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "tx0_index": 49, - "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 50, - "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10366,7 +10392,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10446,20 +10472,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10467,20 +10493,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", + "event": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10488,20 +10514,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10509,20 +10535,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "event": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10534,16 +10560,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10603,12 +10629,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -10620,16 +10646,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "event": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676545, + "block_time": 1729678723, "asset_info": { "divisible": true, "asset_longname": null, @@ -10641,16 +10667,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "divisible": true, "asset_longname": null, @@ -10662,16 +10688,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "divisible": true, "asset_longname": null, @@ -10683,16 +10709,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "asset_info": { "divisible": true, "asset_longname": null, @@ -10732,20 +10758,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10765,12 +10791,25 @@ Returns the dividends of an asset } ``` -### Get Issuances By Asset [GET /v2/assets/{asset}/issuances{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Issuances By Asset [GET /v2/assets/{asset}/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns the issuances of an asset + Parameters + asset: `FAIRMINTA` (str, required) - The asset to return + + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + + Default: `all` + + Members + + `all` + + `creation` + + `reissuance` + + `lock_quantity` + + `reset` + + `change_description` + + `transfer` + + `open_fairminter` + + `fairmint` + + `lock_description` + cursor (str, optional) - The last index of the issuances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of issuances to return @@ -10789,14 +10828,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", + "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -10811,20 +10850,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -10839,20 +10878,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -10867,20 +10906,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -10895,7 +10934,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729676212, + "block_time": 1729678408, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10929,10 +10968,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10940,7 +10979,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -10953,10 +10992,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 10, "status": "valid", @@ -10964,7 +11003,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -10977,10 +11016,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", "block_index": 189, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -10988,7 +11027,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676520, + "block_time": 1729678697, "asset_info": { "divisible": true, "asset_longname": null, @@ -11001,10 +11040,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", + "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", "block_index": 157, - "source": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", - "destination": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", + "destination": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11012,7 +11051,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676379, + "block_time": 1729678568, "asset_info": { "divisible": true, "asset_longname": null, @@ -11025,10 +11064,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad", + "tx_hash": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8", "block_index": 156, - "source": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", - "destination": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", + "source": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", + "destination": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11036,7 +11075,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676375, + "block_time": 1729678562, "asset_info": { "divisible": true, "asset_longname": null, @@ -11087,9 +11126,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11098,7 +11137,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11108,7 +11147,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -11124,9 +11163,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", + "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", "block_index": 142, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11135,7 +11174,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11145,7 +11184,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676304, + "block_time": 1729678493, "asset_info": { "divisible": true, "asset_longname": null, @@ -11161,9 +11200,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", + "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", "block_index": 150, - "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", + "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11171,10 +11210,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11182,7 +11221,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676339, + "block_time": 1729678537, "asset_info": { "divisible": true, "asset_longname": null, @@ -11198,18 +11237,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11219,7 +11258,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -11244,7 +11283,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - The address to return + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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` @@ -11257,9 +11296,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11268,7 +11307,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11278,7 +11317,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -11328,7 +11367,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11336,7 +11375,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11345,7 +11384,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11353,7 +11392,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11362,7 +11401,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11370,7 +11409,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11379,7 +11418,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11416,27 +11455,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11451,7 +11490,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -11465,27 +11504,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", + "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", "block_index": 147, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11500,7 +11539,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676326, + "block_time": 1729678514, "asset_info": { "divisible": true, "asset_longname": null, @@ -11514,19 +11553,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11534,7 +11573,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11549,7 +11588,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -11563,19 +11602,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11583,7 +11622,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11598,7 +11637,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -11641,8 +11680,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -11650,8 +11689,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729676388, - "last_issuance_block_time": 1729676388, + "first_issuance_block_time": 1729678575, + "last_issuance_block_time": 1729678575, "supply_normalized": "0.00000000" } ], @@ -11690,10 +11729,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11718,7 +11757,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11758,22 +11797,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", + "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11782,22 +11821,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11806,22 +11845,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11840,7 +11879,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a` (str, required) - The address of the mints to return + + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (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` @@ -11859,22 +11898,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -11923,9 +11962,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11940,7 +11979,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -11966,9 +12005,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -11983,7 +12022,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12009,9 +12048,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12026,7 +12065,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12052,9 +12091,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "block_index": 188, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12069,7 +12108,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12095,9 +12134,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12112,7 +12151,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12147,7 +12186,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2` (str, required) - The hash of the transaction that created the order + + order_hash: `b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3` (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. @@ -12159,9 +12198,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12176,7 +12215,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12208,7 +12247,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a` (str, required) - The hash of the transaction that created the order + + order_hash: `6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9` (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 @@ -12235,13 +12274,13 @@ Returns the order matches of an order { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12255,7 +12294,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12275,13 +12314,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12295,7 +12334,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12325,7 +12364,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a` (str, required) - The hash of the transaction that created the order + + order_hash: `6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9` (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 @@ -12344,15 +12383,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "btc_amount": 2000, - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "status": "valid", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "btc_amount_normalized": "0.00002000" } ], @@ -12396,9 +12435,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12416,7 +12455,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729676502, + "block_time": 1729678688, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12442,9 +12481,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "block_index": 188, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12462,7 +12501,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12488,9 +12527,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12508,7 +12547,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12534,9 +12573,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12554,7 +12593,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12580,9 +12619,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12600,7 +12639,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12663,13 +12702,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12686,7 +12725,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12706,13 +12745,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12729,7 +12768,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12749,13 +12788,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "tx0_index": 49, - "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 50, - "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12772,7 +12811,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676422, + "block_time": 1729678609, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12830,13 +12869,13 @@ Returns all the order matches { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12850,7 +12889,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12870,13 +12909,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12890,7 +12929,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12910,13 +12949,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "tx0_index": 49, - "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 50, - "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12930,7 +12969,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13098,66 +13137,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", + "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", "block_index": 121, - "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", + "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729676208, + "block_time": 1729678403, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "e5536dd615707c7c3db9ed85b0ee4e26962ef522412e53a7583562bf53f9bed6", + "tx_hash": "2b92c5ba4bff308186e1596603e2fb377e8b02051a85215b4b61c17b3d1a6d90", "block_index": 120, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729676204, + "block_time": 1729678399, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3da47037f73ceafc5ffae318453f303e77b32ea545da24985f5790a260c54bea", + "tx_hash": "cc87e0fae13e23537d7b3cad7e7cd469f265c9a066362727f6ea8698b7b239f6", "block_index": 119, - "source": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74", + "source": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729676199, + "block_time": 1729678395, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "27f9b9e7d012e6e75b08b1d7a450dc3b17b2d14eb4b123e83087b367364ba3d0", + "tx_hash": "4e1b0094704b6e6e79f2927b09491dc1f2d5109a4e94f701d4167a0b6f6b53be", "block_index": 118, - "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729676195, + "block_time": 1729678391, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "4ba484c83bb8ab87d399d82e60a5a70b07df9458db02638f11b6bfec48060b5a", + "tx_hash": "399533b3fb6b2ff6fca2246201a37f73f7d45e7df2445f476364fce0fd2f3fef", "block_index": 117, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729676191, + "block_time": 1729678388, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13202,9 +13241,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13213,7 +13252,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13223,7 +13262,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -13239,9 +13278,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", + "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", "block_index": 142, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13250,7 +13289,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13260,7 +13299,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676304, + "block_time": 1729678493, "asset_info": { "divisible": true, "asset_longname": null, @@ -13276,9 +13315,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", + "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", "block_index": 150, - "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", + "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13286,10 +13325,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13297,7 +13336,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676339, + "block_time": 1729678537, "asset_info": { "divisible": true, "asset_longname": null, @@ -13313,18 +13352,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13334,7 +13373,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -13359,7 +13398,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2` (str, required) - The hash of the dispenser to return + + dispenser_hash: `9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752` (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. @@ -13371,9 +13410,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13382,7 +13421,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13392,7 +13431,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -13414,7 +13453,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2` (str, required) - The hash of the dispenser to return + + dispenser_hash: `9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752` (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 @@ -13434,19 +13473,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13454,7 +13493,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13469,7 +13508,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -13483,19 +13522,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13503,7 +13542,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13518,7 +13557,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -13560,20 +13599,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -13598,7 +13637,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8` (str, required) - The hash of the dividend to return + + dividend_hash: `d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1` (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. @@ -13610,20 +13649,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -13645,7 +13684,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1` (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 @@ -13668,12 +13707,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "tx_index": 41, - "utxo": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "utxo": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "divisible": true, "asset_longname": null, @@ -13685,16 +13724,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "address": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "divisible": true, "asset_longname": null, @@ -13740,27 +13779,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 561, @@ -13769,14 +13808,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -13787,9 +13826,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 560, @@ -13798,9 +13837,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -13810,24 +13849,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -13837,9 +13876,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 558, @@ -13867,15 +13906,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } } ``` @@ -13953,16 +13992,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -13972,9 +14011,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 557, @@ -13984,12 +14023,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -13999,9 +14038,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 554, @@ -14011,39 +14050,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "divisible": true, "asset_longname": null, @@ -14053,36 +14092,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "block_time": 1729676541 + "block_time": 1729678718 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "block_time": 1729676541 + "block_time": 1729678718 } ], "next_cursor": 536, @@ -14138,27 +14177,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14173,7 +14212,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -14187,27 +14226,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", + "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", "block_index": 147, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14222,7 +14261,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676326, + "block_time": 1729678514, "asset_info": { "divisible": true, "asset_longname": null, @@ -14236,19 +14275,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14256,7 +14295,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14271,7 +14310,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -14285,19 +14324,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14305,7 +14344,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14320,7 +14359,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -14362,10 +14401,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14373,7 +14412,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -14386,10 +14425,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14397,11 +14436,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -14410,10 +14449,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14421,7 +14460,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -14434,10 +14473,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14445,11 +14484,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -14458,10 +14497,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14469,11 +14508,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -14488,11 +14527,24 @@ Returns all the sends include Enhanced and MPMA sends ## Group Issuances -### Get Issuances [GET /v2/issuances{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] +### Get Issuances [GET /v2/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] Returns all the issuances + Parameters + + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + + Default: `all` + + Members + + `all` + + `creation` + + `reissuance` + + `lock_quantity` + + `reset` + + `change_description` + + `transfer` + + `open_fairminter` + + `fairmint` + + `lock_description` + cursor (str, optional) - The last index of the issuances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of issuances to return @@ -14511,14 +14563,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -14533,20 +14585,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", + "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -14561,20 +14613,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729676392, + "block_time": 1729678579, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", + "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -14589,20 +14641,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676388, + "block_time": 1729678575, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", + "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -14617,20 +14669,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676383, + "block_time": 1729678571, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", + "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "transfer": false, "callable": false, "call_date": 0, @@ -14645,7 +14697,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676379, + "block_time": 1729678568, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14660,7 +14712,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c` (str, required) - The hash of the transaction to return + + tx_hash: `5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28` (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. @@ -14672,14 +14724,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -14694,7 +14746,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14726,16 +14778,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -14749,7 +14801,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667` (str, required) - The hash of the transaction to return + + tx_hash: `a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468` (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. @@ -14762,16 +14814,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -14805,9 +14857,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "block_index": 138, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14815,14 +14867,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676278, + "block_time": 1729678476, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", + "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", "block_index": 137, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14830,7 +14882,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676274, + "block_time": 1729678471, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14844,7 +14896,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f` (str, required) - The hash of the transaction to return + + tx_hash: `fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535` (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. @@ -14856,9 +14908,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "block_index": 138, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14866,7 +14918,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676278, + "block_time": 1729678476, "fee_fraction_int_normalized": "0.00000000" } } @@ -14903,10 +14955,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14931,7 +14983,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14940,10 +14992,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -14968,7 +15020,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729676266, + "block_time": 1729678464, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14980,10 +15032,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15008,7 +15060,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729676249, + "block_time": 1729678447, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15020,10 +15072,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15048,7 +15100,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729676245, + "block_time": 1729678442, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15060,10 +15112,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15088,7 +15140,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15157,22 +15209,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -15181,22 +15233,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", + "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676262, + "block_time": 1729678460, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -15205,22 +15257,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", + "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676258, + "block_time": 1729678455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -15229,22 +15281,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", + "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676253, + "block_time": 1729678451, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -15253,22 +15305,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2295039e748f4b0d70a7e6dfa7d556337e04c3837b1ec2bb63210dfcdd27213f", + "tx_hash": "696c4abfb0832fbf79528b17657b0c9f289c40aa1a503c32dee9760562df53a4", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676241, + "block_time": 1729678438, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -15287,7 +15339,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945` (str, required) - The hash of the fairmint to return + + tx_hash: `bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2` (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. @@ -15298,22 +15350,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -15331,7 +15383,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95,bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74` (str, required) - The addresses to search for + + addresses: `bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn,bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038` (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. @@ -15350,8 +15402,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", - "address": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95" + "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", + "address": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn" }, { "vout": 2, @@ -15359,8 +15411,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", - "address": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74" + "txid": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", + "address": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038" } ], "next_cursor": null, @@ -15373,7 +15425,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d` (str, required) - The address to search for + + address: `bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0` (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 @@ -15389,28 +15441,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29" + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832" }, { - "tx_hash": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057" + "tx_hash": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a" }, { - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667" + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468" }, { - "tx_hash": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86" + "tx_hash": "e60162f6e8017525f64b045ef6ff92d26e407e45f18b6a639cca67e7709cf498" }, { - "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" }, { - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2" + "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4" }, { - "tx_hash": "db4eedd503a3a78611f54a1df9483686777f866a745f7644adae81d1e2fa9fbf" + "tx_hash": "f36d45bcc314f9964b7edc112f5a3647777b7396316cc1b2bacb9faccf6b4ab5" }, { - "tx_hash": "47bf5a24eb83c74d78bffde051f355092efbe4ab6b951f01bedf5a607268a2eb" + "tx_hash": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc" } ], "next_cursor": null, @@ -15423,7 +15475,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu` (str, required) - The address to search for. + + address: `bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg` (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. @@ -15436,8 +15488,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 1, - "tx_hash": "0979edfa8c2f003fdd07c0d012947833cf66d9395d51d971bc624b4b7c203472" + "block_index": 6, + "tx_hash": "f0206715d5e808c47174ba1de958c4299fa90963cc49f3f708096968ddc8e9a9" } } ``` @@ -15447,7 +15499,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95` (str, required) - The address to search for + + address: `bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn` (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 @@ -15468,7 +15520,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556" + "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f" } ], "next_cursor": null, @@ -15481,7 +15533,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h` (str, required) - Address to get pubkey for. + + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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. @@ -15493,7 +15545,7 @@ Get pubkey for an address. ``` { - "result": "02e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a" + "result": "0254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e" } ``` @@ -15502,7 +15554,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a` (str, required) - The transaction hash + + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (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. @@ -15514,7 +15566,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101ec5ecb5505352fabe1e553387612aead6cd063550a2e97d5776fa1fa9e809deb0100000000ffffffff03e8030000000000001600141a4276a941acf906f7f9539bb10d51d26ee94e4000000000000000000c6a0a5e7a06c5f66b6d5b1703dced08270100000016001474ddbc39c1f0f36185e16375629f2623c46061c802473044022071a2783b88cda714f84ce3a1d8ba5080f13dc91eb0725c4c619a11df84853ad902206321ea29901ce9346a49536059adec2a4d5c6ae5b9e0fda1084e0957d0fec8b801210269ff0be68bd0b9d62624826865b687dce119a43371f72e17b31b86ad0df3e42c00000000" + "result": "020000000001017d6b9b0f9e939c920785e1be72ff459b709cc934eb4e20d214666e4a03003a370100000000ffffffff03e803000000000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194200000000000000000c6a0a95c6de5e62c4fa610cd8dced082701000000160014739d9c26e6ee51a22ade8e3745236c326b19a8d10247304402205fd85e2f2617f2cdcebf90bc31961766a27a9f50c3a4e3474cd64692f4fbb232022040b17ff6b1519b5449f01ae3362af4bd12ba6addab6e0cffdcb51abf938957ba01210378cff7b4313e8c6382234edac20e0c4b25886ca678fd5cbd9e487627f0f9b2df00000000" } ``` @@ -15609,27 +15661,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63 }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "quantity": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, "asset_info": { "divisible": true, @@ -15640,22 +15692,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -15665,22 +15717,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 196, - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -15690,30 +15742,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729676559.013981, + "block_time": 1729678736.7024257, "btc_amount": 0, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "destination": "", "fee": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, - "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", + "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -15727,7 +15779,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, @@ -15758,19 +15810,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -15780,7 +15832,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, @@ -15793,7 +15845,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff` (str, required) - The hash of the transaction to return + + tx_hash: `81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f` (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 @@ -15813,27 +15865,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63 }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "quantity": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, "asset_info": { "divisible": true, @@ -15844,22 +15896,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -15869,22 +15921,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 196, - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -15894,30 +15946,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729676559.013981, + "block_time": 1729678736.7024257, "btc_amount": 0, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "destination": "", "fee": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, - "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", + "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -15931,7 +15983,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 6b2c1ca4bc..0c3032c7c9 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -14,6 +14,18 @@ DispenserStatusNumber = {"open": 0, "closed": 10, "closing": 11, "open_empty_address": 1} DispenserStatusNumberInverted = {value: key for key, value in DispenserStatusNumber.items()} FairmintersStatus = Literal["all", "open", "closed", "pending"] +IssuancesAssetEvents = Literal[ + "all", + "creation", + "reissuance", + "lock_quantity", + "reset", + "change_description", + "transfer", + "open_fairminter", + "fairmint", + "lock_description", +] BetMatchesStatus = Literal[ "dropped", @@ -1146,17 +1158,40 @@ def get_destructions( ) -def get_issuances(db, cursor: str = None, limit: int = 100, offset: int = None): +def prepare_issuance_where(asset_events, other_conditions=None): + where = [] + asset_events_list = asset_events.split(",") + for asset_event in asset_events_list: + if asset_event == "all": + where = [other_conditions] if other_conditions else [] + break + if asset_event in typing.get_args(IssuancesAssetEvents): + where_status = {"asset_events__like": f"%{asset_event}%"} + if other_conditions: + where_status.update(other_conditions) + where.append(where_status) + return where + + +def get_issuances( + db, + asset_events: IssuancesAssetEvents = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, +): """ Returns all the issuances :param str cursor: The last index of the issuances to return + :param str asset_events: Filter result by one or several comma separated asset events :param int limit: The maximum number of issuances to return (e.g. 5) :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) """ + where = prepare_issuance_where(asset_events, {"status": "valid"}) return select_rows( db, "issuances", - where={"status": "valid"}, + where=where, last_cursor=cursor, limit=limit, offset=offset, @@ -1164,19 +1199,26 @@ def get_issuances(db, cursor: str = None, limit: int = 100, offset: int = None): def get_issuances_by_block( - db, block_index: int, cursor: str = None, limit: int = 100, offset: int = None + db, + block_index: int, + asset_events: IssuancesAssetEvents = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, ): """ Returns the issuances of a block :param int block_index: The index of the block to return (e.g. $LAST_ISSUANCE_BLOCK) + :param str asset_events: Filter result by one or several comma separated asset events :param str cursor: The last index of the issuances to return :param int limit: The maximum number of issuances to return (e.g. 5) :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) """ + where = prepare_issuance_where(asset_events, {"block_index": block_index, "status": "valid"}) return select_rows( db, "issuances", - where={"block_index": block_index, "status": "valid"}, + where=where, last_cursor=cursor, limit=limit, offset=offset, @@ -1192,22 +1234,30 @@ def get_issuance_by_transaction_hash(db, tx_hash: str): def get_issuances_by_asset( - db, asset: str, cursor: str = None, limit: int = 100, offset: int = None + db, + asset: str, + asset_events: IssuancesAssetEvents = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, ): """ Returns the issuances of an asset :param str asset: The asset to return (e.g. $ASSET_1) + :param str asset_events: Filter result by one or several comma separated asset events :param str cursor: The last index of the issuances to return :param int limit: The maximum number of issuances to return (e.g. 5) :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) """ + where = prepare_issuance_where( + asset_events, {"asset": asset.upper(), "status": "valid"} + ) + prepare_issuance_where( + asset_events, {"UPPER(asset_longname)": asset.upper(), "status": "valid"} + ) return select_rows( db, "issuances", - where=[ - {"asset": asset.upper(), "status": "valid"}, - {"UPPER(asset_longname)": asset.upper(), "status": "valid"}, - ], + where=where, last_cursor=cursor, limit=limit, offset=offset, @@ -1215,19 +1265,26 @@ def get_issuances_by_asset( def get_issuances_by_address( - db, address: str, cursor: str = None, limit: int = 100, offset: int = None + db, + address: str, + asset_events: IssuancesAssetEvents = "all", + cursor: str = None, + limit: int = 100, + offset: int = None, ): """ Returns the issuances of an address :param str address: The address to return (e.g. $ADDRESS_1) + :param str asset_events: Filter result by one or several comma separated asset events :param str cursor: The last index of the issuances to return :param int limit: The maximum number of issuances to return (e.g. 5) :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) """ + where = prepare_issuance_where(asset_events, {"issuer": address, "status": "valid"}) return select_rows( db, "issuances", - where={"issuer": address, "status": "valid"}, + where=where, last_cursor=cursor, limit=limit, offset=offset, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index fc2c46f467..5f0d5a1971 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -8342,6 +8342,25 @@ "type": "int", "description": "The index of the block to return (e.g. $LAST_ISSUANCE_BLOCK)" }, + { + "name": "asset_events", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "creation", + "reissuance", + "lock_quantity", + "reset", + "change_description", + "transfer", + "open_fairminter", + "fairmint", + "lock_description" + ], + "description": "Filter result by one or several comma separated asset events" + }, { "name": "cursor", "default": null, @@ -10270,6 +10289,25 @@ "type": "str", "description": "The address to return (e.g. $ADDRESS_1)" }, + { + "name": "asset_events", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "creation", + "reissuance", + "lock_quantity", + "reset", + "change_description", + "transfer", + "open_fairminter", + "fairmint", + "lock_description" + ], + "description": "Filter result by one or several comma separated asset events" + }, { "name": "cursor", "default": null, @@ -14849,6 +14887,25 @@ "type": "str", "description": "The asset to return (e.g. $ASSET_1)" }, + { + "name": "asset_events", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "creation", + "reissuance", + "lock_quantity", + "reset", + "change_description", + "transfer", + "open_fairminter", + "fairmint", + "lock_description" + ], + "description": "Filter result by one or several comma separated asset events" + }, { "name": "cursor", "default": null, @@ -16489,6 +16546,25 @@ "function": "get_issuances", "description": "Returns all the issuances", "args": [ + { + "name": "asset_events", + "default": "all", + "required": false, + "type": "enum[str]", + "members": [ + "all", + "creation", + "reissuance", + "lock_quantity", + "reset", + "change_description", + "transfer", + "open_fairminter", + "fairmint", + "lock_description" + ], + "description": "Filter result by one or several comma separated asset events" + }, { "name": "cursor", "default": null, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 82500206d4..1ad8d83300 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": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", "difficulty": 545259519, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", - "block_time": 1729676545, - "previous_block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", + "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_time": 1729678723, + "previous_block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", "difficulty": 545259519, - "ledger_hash": "9dcfe7a47c2fb360eca9a969852773a92eb5d2328a23345228c403354af37d58", - "txlist_hash": "6ac7a3af202cec00be8c7cfa322e5e97f9077b483223528eda4c7e8d0296dc31", - "messages_hash": "5df8ba2ff2bd0457f3880a370b32eecdd9f820c4452a683cbc9f0949ab177108", + "ledger_hash": "0728fdaf217c1411e9f56f3419b4f416747787fc2e86f89daa50d5af665493f1", + "txlist_hash": "6572814c5fe9125c42aa6cc779395eb58bd4d41c1cc7eb81747f0ac3f926faf8", + "messages_hash": "f35d7ce946e7c5dfa6f6dfa9a786fbbc324d87db48f8a2449c91a8fceb03333d", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "2d98a75422788a4528f2c0aa16c09013ecfbafc5fafc05b4670354a5f596994d", - "block_time": 1729676541, - "previous_block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", + "block_time": 1729678718, + "previous_block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", "difficulty": 545259519, - "ledger_hash": "398017b47f606f3af4e227c3aa64fbfd03eaf0cf158624b1e32e7d49f3e340e5", - "txlist_hash": "3cb1a0afed67ac326473a882776bdaca17ef79331404cf28167b2a56fa88bf9e", - "messages_hash": "e4439bd0b7b14dbafee2ef7a5ec521016d25c27a3baf03401b13bb0570d09e7a", + "ledger_hash": "15098994debc66645d87036ccdc04dff1d8a3e5048cdff460d706ca30786d3e2", + "txlist_hash": "d087cfb215356510fac7478fcdd9b4ab4db014d2e5203f6ca55a2fa9697234fd", + "messages_hash": "963ec904da3f72f664e2b4423a4115b8627779bb149ce30e2e405711a90c4c23", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", - "block_time": 1729676536, - "previous_block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_time": 1729678714, + "previous_block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", "difficulty": 545259519, - "ledger_hash": "3cbb4062bbc678878b0ece16d25494730be1241a6a73aad4d849e33e29a8a23f", - "txlist_hash": "10dfdf6d781ecb009da71df3e63cb856426299120d035c5e3e9f5095c19b0fab", - "messages_hash": "b3abe98e60f148ec273bbc35053c4232381a565ef2e4aa4c1ff10508e0956db0", + "ledger_hash": "09f10cc67e15d319daf6cf589285749418a57620dcb6771b2b320e9284927e2a", + "txlist_hash": "a230bad99dc8551fae755e954f0d7b8e09e78e2672bdea23bcb57c6b420fbdde", + "messages_hash": "564b85500289945fdf7375ae5ed38b9c262d5b490de5487065be0deccd7902a3", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", - "block_time": 1729676532, - "previous_block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", + "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_time": 1729678710, + "previous_block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", "difficulty": 545259519, - "ledger_hash": "ed83ed864ac6951beac860bebebb75d09e9e42c8add81f1c1bb438bef8c273fc", - "txlist_hash": "31bbc916b4ec2281e696dc3eeea7fb9721f62693801bd5fb4b19aedd71f6ca9d", - "messages_hash": "26ef1835d6506ff745e6aa6db046666020c84948d6819b1f66c3e3ade2789b90", + "ledger_hash": "ce03a8bb04d981ec6d0dfcdfcfc590c97a12e17cf39f57ce7ece44447d0f30ba", + "txlist_hash": "59935866d0083a9a32180b40bafb4e44f06627556a1c6106b71855f4dee5af6e", + "messages_hash": "bb2b9603965517fa8be7af0413e406828e177c12598220cf53ed3306f8223723", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", "difficulty": 545259519, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", "difficulty": 545259519, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a" + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "object_id": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "block_index": 184, "confirmed": true, - "block_time": 1729676422 + "block_time": 1729678609 }, { "type": "order", - "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, "confirmed": true, - "block_time": 1729676422 + "block_time": 1729678609 }, { "type": "order_match", - "object_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "block_index": 184, "confirmed": true, - "block_time": 1729676422 + "block_time": 1729678609 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "status": "valid", "confirmed": true, - "block_time": 1729676532 + "block_time": 1729678710 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "block_index": 195, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729676545, + "block_time": 1729678723, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "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": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -683,10 +683,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -711,7 +711,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -726,22 +726,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -757,17 +757,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -780,17 +780,17 @@ }, { "tx_index": 61, - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "block_index": 195, - "block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327", - "block_time": 1729676545, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_time": 1729678723, + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4:1", + "utxos_info": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -830,7 +830,7 @@ { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "014200", + "script_sig": "013900", "sequence": 4294967295, "coinbase": true } @@ -838,7 +838,7 @@ "vout": [ { "value": 5000000000, - "script_pub_key": "0014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40" + "script_pub_key": "0014d5dfbe27ae299c5fd959d4d431b265cb285f92da" }, { "value": 0, @@ -849,25 +849,25 @@ "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe", - "tx_id": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe" + "tx_hash": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e", + "tx_id": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e" } } }, "/v2/transactions//info": { "result": { - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "55c67f194fd4987d50f9414a51e3d352d06746d21fd60d54124e2e93d3c6e5f8", + "hash": "5bc03f229c6ccefcf29003757c8025d21e5d86112a624da855ec77f9e3f27e64", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -877,20 +877,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2efb55cf9708665e83703ddaf6990bae645d7df6d910369af9ec09cee0ce82efedc199e1e27411b421e1c6dff2caa0" + "script_pub_key": "6a2e43458907eb92d54733b9b266605ca86b0d67d5fe32271ee78f78ed7757e9b327dbdaea94547ce86ed5582a2ab79b" }, { "value": 4999955000, - "script_pub_key": "0014389cf1fc21f030356a2b4839e8cb66dc9bd69abb" + "script_pub_key": "0014ba169e41ef98c76eb1b6b1f4740ff07f576f45f1" } ], "vtxinwit": [ - "3044022073f2e04ac9876ade564fb6688b56c4e326b933e06e68b2134a23b89eac3993fa02201604e88618738b36cf449e53d0a4457fea6fdc69867431aaceef1be3b839024801", - "02ffb386606fe3569f0bd57b21acea3bb5debb97764165fcaba274dc4f81cdf82f" + "304402207b2c0b966059a47e6a2dfcebe1ed067326f6978612b540b76744a1195fe547410220253f7dc140443139a42df054e688ea5bdbef7ff953c4f57294d37d2bb830760e01", + "03147bff7b2e3b1267a4dfbbbdc8c96cc069c34d6583fd5e6ec2dd84d81dceb2ff" ], "lock_time": 0, - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", - "tx_id": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff" + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_id": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f" }, "unpacked_data": { "message_type": "enhanced_send", @@ -898,7 +898,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -925,17 +925,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -950,17 +950,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", - "block_time": 1729676554, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_time": 1729678732, + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -979,12 +979,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 561, @@ -993,14 +993,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1011,9 +1011,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 560, @@ -1022,9 +1022,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -1034,24 +1034,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1061,9 +1061,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 558, @@ -1071,14 +1071,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "msg_index": 1, "quantity": 1500000000, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "status": "valid", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1088,9 +1088,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 557, @@ -1103,12 +1103,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 561, @@ -1117,14 +1117,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1135,9 +1135,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 560, @@ -1146,9 +1146,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -1158,24 +1158,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1185,9 +1185,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 558, @@ -1195,14 +1195,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "msg_index": 1, "quantity": 1500000000, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "status": "valid", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1212,9 +1212,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 557, @@ -1224,10 +1224,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1235,7 +1235,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,10 +1248,10 @@ }, { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1259,11 +1259,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1279,27 +1279,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1314,7 +1314,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,16 +1335,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1354,9 +1354,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 557, @@ -1366,12 +1366,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1381,9 +1381,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 554, @@ -1393,24 +1393,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": null, @@ -1422,16 +1422,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1441,9 +1441,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 557, @@ -1453,12 +1453,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -1468,9 +1468,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 554, @@ -1480,24 +1480,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": null, @@ -1510,7 +1510,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1520,7 +1520,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1531,7 +1531,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1541,7 +1541,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1552,7 +1552,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1562,7 +1562,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1573,7 +1573,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1583,7 +1583,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1594,7 +1594,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1604,7 +1604,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1618,17 +1618,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", - "block_time": 1729676536, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_time": 1729678714, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", + "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1664,23 +1664,23 @@ }, { "tx_index": 58, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", - "block_time": 1729676532, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_time": 1729678710, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "supported": true, - "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", + "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "status": "valid" } }, @@ -1688,17 +1688,17 @@ }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 191, - "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", - "block_time": 1729676529, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", + "block_time": 1729678705, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", + "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1734,17 +1734,17 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", - "block_time": 1729676525, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", + "block_time": 1729678701, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", + "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1752,14 +1752,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -1767,7 +1767,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1786,25 +1786,25 @@ }, { "tx_index": 53, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_hash": "2e8fa43b31410e6856113665bac1c83985e16b3a8a748c12dd18eb51a2d209cb", - "block_time": 1729676502, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "2170ee5e48491e98a338e25f7a4770fd917dea480c2e47ffed408c5139ada59c", + "block_time": 1729678688, + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "btc_amount": 2000, "fee": 10000, - "data": "0bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "data": "0b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f970b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "supported": true, - "utxos_info": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3:0", + "utxos_info": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "status": "valid" } }, @@ -1833,11 +1833,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "open", - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1861,24 +1861,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "block_index": 193, - "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729676536, + "block_time": 1729678714, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,25 +1888,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", "block_index": 193, - "block_time": 1729676536, + "block_time": 1729678714, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, - "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", + "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1938,40 +1938,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "tx_index": 58, - "block_time": 1729676532 + "block_time": 1729678710 }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729676532, + "block_time": 1729678710, "asset_info": { "divisible": true, "asset_longname": null, @@ -1981,9 +1981,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 } ], "next_cursor": 520, @@ -1992,17 +1992,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "quantity": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, "asset_info": { "divisible": true, @@ -2013,22 +2013,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -2038,22 +2038,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 196, - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -2063,30 +2063,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729676559.013981, + "block_time": 1729678736.7024257, "btc_amount": 0, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "destination": "", "fee": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, - "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", + "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -2100,7 +2100,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, @@ -2109,7 +2109,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2117,14 +2117,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2132,14 +2132,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2154,7 +2154,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2162,7 +2162,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2175,7 +2175,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2197,16 +2197,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "asset_info": { "divisible": true, "asset_longname": null, @@ -2218,16 +2218,16 @@ }, { "block_index": 184, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "event": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "asset_info": { "divisible": true, "asset_longname": null, @@ -2239,20 +2239,20 @@ }, { "block_index": 161, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "event": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2260,20 +2260,20 @@ }, { "block_index": 158, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", + "event": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676383, + "block_time": 1729678571, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2285,16 +2285,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "event": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "tx_index": 39, - "utxo": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", - "utxo_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "utxo": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "utxo_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "confirmed": true, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2308,16 +2308,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,16 +2329,16 @@ }, { "block_index": 191, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676529, + "block_time": 1729678705, "asset_info": { "divisible": true, "asset_longname": null, @@ -2350,16 +2350,16 @@ }, { "block_index": 190, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -2371,20 +2371,20 @@ }, { "block_index": 190, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2392,16 +2392,16 @@ }, { "block_index": 185, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "event": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676493, + "block_time": 1729678670, "asset_info": { "divisible": true, "asset_longname": null, @@ -2424,9 +2424,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", + "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", "block_index": 137, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2434,7 +2434,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676274, + "block_time": 1729678471, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2445,14 +2445,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "b1787afd89597b03aa5b015b1c2ef508d2593f14f453f9c8c865b51422388834", + "tx_hash": "60aca46cf7bda0f914148f4cd3646391dbc2729f7af0733efd7ebbcf9f63e365", "block_index": 112, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729676171, + "block_time": 1729678367, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2464,10 +2464,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2475,7 +2475,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -2488,10 +2488,10 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2499,11 +2499,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2512,10 +2512,10 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2523,11 +2523,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2536,10 +2536,10 @@ }, { "tx_index": 39, - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "block_index": 152, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2547,11 +2547,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2560,10 +2560,10 @@ }, { "tx_index": 36, - "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", + "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", "block_index": 149, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2571,11 +2571,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676334, + "block_time": 1729678533, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2590,10 +2590,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "block_index": 151, - "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", - "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", + "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2601,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676343, + "block_time": 1729678541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2620,10 +2620,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2631,11 +2631,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2644,10 +2644,10 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2655,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2668,10 +2668,10 @@ }, { "tx_index": 39, - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "block_index": 152, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2679,11 +2679,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2692,10 +2692,10 @@ }, { "tx_index": 36, - "tx_hash": "4c49165794ee6c6721e7429300b70b5f11af328a4e8626002f8ac0fb089a9eb8", + "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", "block_index": 149, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057:1", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2703,11 +2703,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676334, + "block_time": 1729678533, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2722,10 +2722,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "block_index": 151, - "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", - "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", + "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2733,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676343, + "block_time": 1729678541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -2752,9 +2752,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2763,7 +2763,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2773,7 +2773,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -2794,9 +2794,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2805,7 +2805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2815,7 +2815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -2835,19 +2835,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2855,7 +2855,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2870,7 +2870,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -2884,19 +2884,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2904,7 +2904,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2919,7 +2919,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -2939,19 +2939,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2959,7 +2959,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2974,7 +2974,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -2988,19 +2988,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3008,7 +3008,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3023,7 +3023,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -3043,19 +3043,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3063,7 +3063,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3078,7 +3078,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -3092,19 +3092,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3112,7 +3112,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3127,7 +3127,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -3147,19 +3147,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3167,7 +3167,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3182,7 +3182,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -3196,19 +3196,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3216,7 +3216,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3231,7 +3231,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -3250,16 +3250,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -3270,14 +3270,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -3292,20 +3292,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", + "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -3320,20 +3320,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729676392, + "block_time": 1729678579, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", + "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -3348,20 +3348,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676388, + "block_time": 1729678575, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", + "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -3376,20 +3376,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676383, + "block_time": 1729678571, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -3404,7 +3404,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3418,8 +3418,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -3427,16 +3427,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -3444,16 +3444,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -3461,16 +3461,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -3478,16 +3478,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -3495,8 +3495,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729676228, - "last_issuance_block_time": 1729676245, + "first_issuance_block_time": 1729678426, + "last_issuance_block_time": 1729678442, "supply_normalized": "0.00000000" } ], @@ -3509,8 +3509,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -3518,16 +3518,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -3535,16 +3535,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -3552,16 +3552,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -3569,16 +3569,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -3586,8 +3586,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729676228, - "last_issuance_block_time": 1729676245, + "first_issuance_block_time": 1729678426, + "last_issuance_block_time": 1729678442, "supply_normalized": "0.00000000" } ], @@ -3600,8 +3600,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -3609,16 +3609,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -3626,16 +3626,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -3643,16 +3643,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -3660,16 +3660,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -3677,8 +3677,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729676228, - "last_issuance_block_time": 1729676245, + "first_issuance_block_time": 1729678426, + "last_issuance_block_time": 1729678442, "supply_normalized": "0.00000000" } ], @@ -3689,17 +3689,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_hash": "17322f4629320f8cbbd8bbe8fb03e4ee6882b9270975470a7bd4db6b551b92bf", - "block_time": 1729676536, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_time": 1729678714, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2:1", + "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3735,23 +3735,23 @@ }, { "tx_index": 58, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_hash": "35ce485a788d2f301fcd291d580ca4f19f711dcaa86f037f8013e39ec93ed325", - "block_time": 1729676532, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_time": 1729678710, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "supported": true, - "utxos_info": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650:1", + "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "status": "valid" } }, @@ -3759,17 +3759,17 @@ }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 191, - "block_hash": "2d8990c7c85910e1d5cc4ae0fe7f731c5b10714c77104e7b9a5a9e08b8919d2c", - "block_time": 1729676529, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", + "block_time": 1729678705, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c:1", + "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3805,17 +3805,17 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "block_hash": "6d694e1a9e67e693e8db7978739b4eefd101baa46241188fdea1f57d908b322e", - "block_time": 1729676525, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", + "block_time": 1729678701, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c80389cf1fc21f030356a2b4839e8cb66dc9bd69abb400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077:0", + "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3823,14 +3823,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -3838,7 +3838,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3857,17 +3857,17 @@ }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 185, - "block_hash": "4678438d531d366bd7f01f6ede3df70e9db91dc424373fca2f438a3df4a362e3", - "block_time": 1729676493, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "block_hash": "37a13a425aabe49af51c4e383cdffd32f73375c4418ae04300e59292b49f5ae7", + "block_time": 1729678670, + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a:1", + "utxos_info": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3909,20 +3909,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -3944,9 +3944,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3961,7 +3961,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3987,9 +3987,9 @@ }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4004,7 +4004,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4030,9 +4030,9 @@ }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4047,7 +4047,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4073,9 +4073,9 @@ }, { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4090,7 +4090,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4121,10 +4121,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4149,7 +4149,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4158,10 +4158,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4186,7 +4186,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729676266, + "block_time": 1729678464, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4198,10 +4198,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4226,7 +4226,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729676249, + "block_time": 1729678447, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4238,10 +4238,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4266,7 +4266,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729676245, + "block_time": 1729678442, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4278,10 +4278,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4306,7 +4306,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4324,22 +4324,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4348,22 +4348,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", + "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676262, + "block_time": 1729678460, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4372,22 +4372,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", + "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676258, + "block_time": 1729678455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4396,22 +4396,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", + "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676253, + "block_time": 1729678451, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4420,22 +4420,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e83cd173d758ac4ea36a12f4f880822982c60251e411b0aa9148cfd9a326e9e3", + "tx_hash": "0ba98ab6cccc8df44723310013e7f8cea8a92cf7f847ff523622f510f450ab0d", "tx_index": 15, "block_index": 127, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676232, + "block_time": 1729678430, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4444,22 +4444,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4474,22 +4474,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4507,7 +4507,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4519,7 +4519,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "0200000000010162c45bad425beecec12cc2a9ca4f5315c387826145d6a45546a01d1886ba352900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a2990a72937e70bc5f113ac3827a6a5294ca19212d92d2c07d7df826d17fd73b91af39bfeea8f7b8785939bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101bc158e372acaf77cc139bd5a044fe5c3f9431e90d584b48cba828c9eb87468ec00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a2992aea7460499574a1075a331fb27e9a41f875b491170470ff9b8d6fa676c055374d262dd24ff9f64bb9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4537,23 +4537,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" }, "name": "btcpay", - "data": "434e5452505254590bf6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "data": "434e5452505254590b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f96280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101ca3dd74955b50643f446e9909bc5b1a3ab0c2c218c5d49d455f48ce793beb7dc00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03b80b000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4000000000000000004b6a49dc1ccaa3c1c37cc2902315bb927e3c7c038cd76ab599298df6b167e755138f5a62fec320b353f317a4f0a7c7bec679e31a6d0d88d56c3f7c63b68ceebf8cba94342880071d1e70d5bcc79f052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101d2bb52cb559f93f1a4dcd9da75c60b37a55f22fe54bc7a178e72bdd3030d7dda00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03b80b000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da00000000000000004b6a4991bdf4447e8ae99bc910117cd4e0c1f4c9ecd735aa0359e45088839790177a31f1dfa2ad238196453c59a32f1b544eb99e8bd7aa70a8c913456e7a58be3abe4aca4e01017d7cbbd658c79f052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "status": "valid" } } @@ -4562,7 +4562,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "quantity": 1000, "overburn": false }, @@ -4572,27 +4572,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "020000000001013db53be4a3eae0e006d8b354dfdfe36144be6a9934e8c97524ba1c2e5b1b3ea400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000" + "rawtransaction": "02000000000101feb91f1f1577b25b907a4589a0e2735db56c82c19834454d2526b0fc042535f500000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2" + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3" }, "name": "cancel", - "data": "434e54525052545946b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "data": "434e54525052545946b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101bbf641b3e888f7a4d43b98e4c5af4c1d9e6927cae72f2f3630b728fa96d4a02c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff0200000000000000002b6a29f496f21b1eca393d02cf8b23e78c4d3ff109484e9959d0cb642bc43144a8b12e30fc983ad9a8117e2a9bba052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001012be1bfd3a4bc6f40d0ef7358c63a1d717ef4c2048a1ee3036be4220daa3897fb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a29204c1cac4ee322a51b1fa47e446e547ae4519ac1319f04cbe8073cded92846055cba14e3ae40d7528d9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "status": "valid" } } @@ -4601,7 +4601,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4620,7 +4620,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "0200000000010149e5b9dc0e1cff0a9103562ecc167474fc106f2bbbbde6fc324aacde2bfd123300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000226a20f28eb2bac2653a8f699370fa1805ae1242189b83557b0f9fd5b8bb768839520faabc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101a038918486b2f8aeb5b1a3632ada819922dd77a8b11db876b7a706c95c52828a00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000226a2007772d9f4be05ada15636d7f0473778e0c7a198f06196c43509a80f9a6f41066aabc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4636,7 +4636,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4660,7 +4660,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "020000000001015685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e0200000016001486c9fb8df4e113364217345a534ec15df1190f17ffffffff0200000000000000002c6a2a1935d51ef9e5b27c0e1451de25963157772aea1b5905cdbcfdb18d3764b6e62b7dcaae924832cb73e9e9b0540a270100000016001486c9fb8df4e113364217345a534ec15df1190f1702000000000000", + "rawtransaction": "020000000001012f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd202000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c3809203ffffffff0200000000000000002c6a2a6f5a2426cd1d4d5a24c9525bf8de62939b34c6ed3eb2ed7f54a45d36356ccb11b7f3e39b57863bcdf06db0540a2701000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c380920302000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4682,14 +4682,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4708,7 +4708,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101872c6c3ec6138433f8c1378244c8558aef4f8533b1e08a697773a8c4364bf85100000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a21e9bbed14b458a585a162116b2ae9500f830a103a11f465cf4c8d642ef4b400657d6fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101c4520d589d19701a90b7d9ec6fa39ea967dbdf13c629e3d27d99d0aa451caef200000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21e62fce5636aa2aaa8ab4203a29d020d7fa91ab62b52cd152a407a2826af3827ef86fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4725,10 +4725,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "transfer_destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "lock": false, "reset": false, @@ -4741,7 +4741,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "02000000000101fda9079f396d38513093ada76ea35a408817499a7377d1d08cb8972097d11f3900000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff032202000000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe400000000000000000236a21733dfb10f894efc1be24aef7868cefb96bd548b065b903aa9a586304cb505bb81b85b2052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101a3eeb9334177683eb3d89ecf3fda3aba9396f930b26572039d481b4fa04944e100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff032202000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da0000000000000000236a21723a052598c88d16fbb9acf530d04edda6bf62f3f53f74932ba7794df13a9e2edf85b2052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4766,16 +4766,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", 1 ], [ "MYASSETA", - "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", 2 ] ], @@ -4783,26 +4783,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a93fd6c7f82cb65d01526fb0bd722052b7bbbe4080a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a08f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280d5dfbe27ae299c5fd959d4d431b265cb285f92da806d5956f8352c1ff14ab40ab558c08c35f67ef34d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001047b7bfe587dcda93d9713fc88e04d24cbf97873e426fdcc402408aaa6bf01a52800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff11619d5e7f43b77a607e930f61da33d275dff38e60b723867751a58e82bc623c00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff7be57b1008cd09b99f2ca24a82345ec77645d3baebb3e96cd23e8f5838b994000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffff05978b3a4b921825331be01454a7376625376e9a91ffdc2fb3a927ba1b56ba800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff03e803000000000000695121020f57dca4a9f74e84dec2301613495740c79f8d4fb56c80769294f63918b130432103cf6056ec0e32494c87278e8e06efa5da2234f0c4e01fd22d9ff1cb5e722d05b22102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee803000000000000695121030057dca4a9f74e84dee1477be18c0cb722e7a1f9e4784992950984194a068bf2210271209e48c3cb5cb91b9865c57e07513d4e72395e14eb72a2bdb9ae321e42291f2102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53ae14f316a804000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000000000000", + "rawtransaction": "02000000000104a1d1ae3c7aa89d2e9075cfed6920f7dbf37e555dd499ce0fae61b5c99b61e09300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8b1ebe38e8dd0b05847d2ed187cab08d83cc881fad02dc7ee12e46a4aca2b4cb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff65d9cde3d86f9d8995c94dbc86801fc37547394f359a5cbb22d5b894caef67dd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92dafffffffff9d347dea48f146afafe09609b995b21b27af53731de5bc2d1c1bda83cf40b9000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03e80300000000000069512102e09a32f2f9fdd1081495ff75372c52057042bb569bcb1ea850fcca565a3e32d821030462aa6de63359abd37a897b61eeed2bdb2ef6c30f726e2e85020aef808fc587210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee80300000000000069512102ef9a32f2f9fdd10814b68818c595e99a756c92cac807dcf733ed783391166d8c210396b86200bf65a19eff657031d5e458731ba2c135718123a1a74a6f83ece0e910210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53ae14f316a804000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4814,7 +4814,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4831,7 +4831,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -4845,7 +4845,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101433eadc0edf5b7cefd578f11554272bbf42a644362d61d5fe5465987d42676cf00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000356a33a4ef143202f486cceb19adbd0e85012db02ed34f788f304fdbc0fe5755e7d4862eddd9d960acdbab2f3892347abc7f7638808e51b8052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "02000000000101afb41532a5271bd113380fe2eca418d2ebefc67537ea7e4ba69fbb45c97485a000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000356a33c0a0ea1cdcdcea8771a7ed0159e53c7e87c145c1c79d80c143189350febc202196b3684fe3499d55cc50cd54fc0ae2a2c68b2f51b8052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4867,8 +4867,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4884,19 +4884,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0", + "data": "434e54525052545902000000000000000100000000000003e8806d5956f8352c1ff14ab40ab558c08c35f67ef34d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "0200000000010117bf3b309d9630bf3f0e84fe559eacc8d5a6e32aef85b15075b6ed0ea0d6155300000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000306a2e89b60557a071ae01fdb862ec619dec6f0d106b4ce192f645d9ae12b825de732a8bed2d297c5ba3d107326569cf2176b9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001012e2335c709f9e69e04236ccbdda9f04412633647e93e369f2d071373c261b98e00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000306a2e7f85c498b9ebdc5cbc1cf69ce660bc12eeeab2c1e7bb01dbb5773636c1b1a4a6b337b1e4b819ce115d7d33b8766476b9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "memo": null, "quantity_normalized": "0.00001000" } @@ -4906,23 +4906,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a007ffff", + "data": "434e54525052545904806d5956f8352c1ff14ab40ab558c08c35f67ef34d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101d60c2d0ddc9e26befe48be5c6e24bfd12c71cc34abbc86563f37dff3af69984000000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000236a218b3a953d59e8907878471f7b425d69856b99c4ba2238bda2718f46b18e5b171b716fbc052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001018d9ed5eaedf42041d3e5236e4f6c2d97b3323ed4663739d97b835ff31638751400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21c5feb8a12643829353f33e9e64237c94424868e23d4a17ad8585d50b41eaac639a6fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "flags": 7, "memo": "ffff" } @@ -4932,8 +4932,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "quantity": 1000 }, "name": "dispense", @@ -4942,7 +4942,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "02000000000101a3bfca2ebb0faa9c14138ee50bf6e214917fdbf925174732500b08939a753ec502000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a0ffffffff03e803000000000000160014389cf1fc21f030356a2b4839e8cb66dc9bd69abb00000000000000000c6a0a4042de1bdd819cf3ab7ae3c1082701000000160014a4cdf915f59cbfe34b78e8f4e76c46cb9af4f4a002000000000000", + "rawtransaction": "02000000000101f6f3038958ad55e8d94b376dea10b837a5e90d12450e7636e8b602f2dd08962f020000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34dffffffff03e803000000000000160014ba169e41ef98c76eb1b6b1f4740ff07f576f45f100000000000000000c6a0a75fead466b940cccbc7be3c10827010000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4955,7 +4955,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4986,7 +4986,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "02000000000101d5c1ee92578cdbdcf9dd649b183ea3f7f6b5ab1cf3df5e8edb923c1f5ce5569400000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000316a2f5cd4db22bff2776492381cc77cb6f615b6c51adba1bebeec7aa599d8a8157c82815cb055f6cb32aec4849c1e84289a3bb9052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001015c241cf3a20d3da5294a5c4d45851da4e2282dfb111062872161e922b09bc0af00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000316a2f5e5b45e8f074107450cf208569d2f9e118b82a67711097f06dc09dfb1cad01405d2f707e19b06d905b841d356af24a3bb9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5015,13 +5015,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5033,7 +5033,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "020000000001011dea0fc0b53aa42dd0ca9b92139b3e2a5116b14a15695b2fab8d485df396eaef00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff020000000000000000166a14a5fabf63183d92aecc01fa0aac4bc21bd4ba271f69bf052a01000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000000000000", + "rawtransaction": "020000000001015340508a67369995b825cb0d23e7db98642ef14f6f50d0fac6825bd44ec6544b00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000166a144d3d0169a3b24b20cf61fa28b4c3ba0e3c1ca62b69bf052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5047,8 +5047,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "d83d91d9c1bd22776f9fd22486280217f6eaa517e459ed65ea94c39a436030fe:0", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5061,12 +5061,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c643833643931643963316264323237373666396664323234383632383032313766366561613531376534353965643635656139346333396134333630333066653a307c5843507c31303030", + "data": "434e545250525459646263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c386562393631633237333133303732643966333633656539343733363633313234346630613964646362366332333034396565366639303963373335323332653a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001062c92de96c3a1ea98037441c9b744faa2c97bd0210779e3e8a1b1d608a4c4213600000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffebe944bcf4c1e6110250fec5bc506e138ad6648ad18dca5716943bb6e675165d00000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff10eb5d88e92219d6bab593805ed69f61715c931852217e3b7dee268782ed0d4200000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff2a60802243d7d3a05a125b316afaef836b1a19ed336b552fb82047d5ea5cc96700000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffffc7b650628836e3373316f0c9443199619628e53855f459d508911108ee70289500000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40fffffffffe3060439ac394ea65ed59e417a5eaf61702288624d29f6f7722bdc1d9913dd800000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe40ffffffff04e80300000000000069512103cabc784abacae5bbe594202f9720f1ea6274ba16379537fb949f017a133e4bfe21025fa52c6ae703b3ae81c7b3e4c70d02c2fe29a1379203d15bc304c3ff1203e0d42102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512103cabc784abacae5bbe5c9217d8730f2a9613ae0116ac03faa9fc15475177749f1210207f02c6fa550a7fcc5c4b6ec9e500bcdeb6dfc66980f8d44940591af1804b4b62102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aee80300000000000069512102e0bc784abacae5bbe5c3722a806ef0e70e4e860b62966ba8adf56c43254f79c0210235c11b099335c69df0f58189aa6532a88f5bc903f936b927a73cf09b2b3284952102e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a53aec36d22fc06000000160014a93fd6c7f82cb65d01526fb0bd722052b7bbbe4002000002000002000002000002000002000000000000", + "rawtransaction": "020000000001065cd4d29c2be11e496a618e60f3b64709fa7fa4a1e092a170d10dd6f18bfa73bd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8c33b605f3589de4ccb1135d15e4a867e4f3b36265daf3917eed27c233433f0400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff299e07e8b5a4b237d19e04c335d588674083607bee73d829be9b8d6a409e528300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff7897f7b859ad5eefa08207d5782a38a6413cb26e50b8be7880fb3c03cae5852000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff2b50c1cae4ec7a29d8bb6a2be159f2a7550515dee4a5a3a454172bf7e0b692eb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff3605d21ae1d9467d4259bef5ba77406531dc47926f6edcc5405b0109a7e32ed100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff04e803000000000000695121030608dd0bd650bd2b990cb01688d9fe67e5781da23a6a74255a987e3824c3bee5210282229f02b495620ba68ba594e60bec3977a8a25ac3c066ba8d0eabf15e45b804210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121030608dd0bd650bd2b995ae546cb9eff21e17414a97c3a263706d93d367b9eba8e2102d425c304f2812404a68ab7c2bd51f66072e8af5494d420a08c5bf0ab5f47eed4210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121032c08dd0bd650bd2b995ae1479f97ff6a8b537db37e3c256263e0090148a88c402103e714f130c6e714659feed3a1df67955241d89b6df1b116c6b56bc9c86874db7e210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aec36d22fc06000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5079,8 +5079,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5093,12 +5093,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964363366306161666336636266393665393932353135346366613961336138393464643136643431623331363462306436323532396663663566383231666433613a307c62637274317134796c6164336c63396a6d393671326a643763743675337132326d6d68306a717268346b35687c5843507c31303030", + "data": "434e54525052545964303335356530663463386366633862346436366336356532376464663739656630363666313132303630363762386263646335623836363166396333323366643a307c6263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "02000000000103852a7f4972fb917f233819e6f76928bbbae6daafe61d416318b90141a4d9dcad010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff5685cedf03c5b71fd8dd5632c95d57c52972d5b2259f4f10824ff76fbb04509e000000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffffade892b34664b10a48b7c7f577788e97c429a2026f7f497be1bd76302220166a010000001600141a4276a941acf906f7f9539bb10d51d26ee94e40ffffffff04e803000000000000695121031bdf29ca92c5de3326fd9e4df90bb86c335837e22b8602ba2f5f5f8535f1a29921034f479966d01f9c637829d4156299e8762b4201379b8e4a235c72ae3434209ff8210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee803000000000000695121021bdf29ca92c5de3326ffcb18aa5de13f645d65b228da0bf0280514c331b1a373210202489e63da12cc3b2a7dd947779ab47628101732df8b0f735e7bf56e3178d7e3210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953aee8030000000000006951210231df29ca92c5de3326ebc04af40eb1710d7851fd78d00bbc4a6666b700c0978721037b24ff07e97eaf024010e07106a8de121f736304aab87e416c1698060112a697210253e54f6fb5ce9514311253d3f59e36a5a35d032064e3e3058709930171017cc953ae11780b27010000001600141a4276a941acf906f7f9539bb10d51d26ee94e4002000002000002000000000000", + "rawtransaction": "02000000000103131af70028bd62be68b4696b2820a49affe13885c2899f5b61f781a7ead8439c01000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff2f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd200000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffffa85601cb5725c44a74ee302135a63986e670f990bee5b7cdf6996d120da8fad901000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff04e8030000000000006951210244ac0de221d73fb9d88c257c117bd7a1a930f12f447ee37050db73b4364989fd21026127286fdc7033046ef6b3a5147969514abdb389be922f0b686ea38be6a9cee1210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee8030000000000006951210344ac0de221d73fb9d8d0237915288bf2fc36a1714322b034508c65f6315b896c21033c72772dde75220a2fe4ecf9497d6a5615bdf1cdf8ca210c2639f983fcf79a73210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee803000000000000695121036eac0de221d73fb9d8982c78163fc2ed9747c26b1628b07832ef1782002abf9c210354421a58b81455335793d595224f0f607b8f83bf8ea41869500cc0ef859cac2b210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853ae11780b2701000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194202000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5114,8 +5114,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -5123,16 +5123,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729676383, - "last_issuance_block_time": 1729676392, + "first_issuance_block_time": 1729678571, + "last_issuance_block_time": 1729678579, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "owner": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "owner": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "divisible": true, "locked": false, "supply": 100000000000, @@ -5140,16 +5140,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729676379, - "last_issuance_block_time": 1729676379, + "first_issuance_block_time": 1729678568, + "last_issuance_block_time": 1729678568, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 100000000000, @@ -5157,16 +5157,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729676330, - "last_issuance_block_time": 1729676330, + "first_issuance_block_time": 1729678518, + "last_issuance_block_time": 1729678518, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 40, @@ -5174,16 +5174,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729676266, - "last_issuance_block_time": 1729676270, + "first_issuance_block_time": 1729678464, + "last_issuance_block_time": 1729678468, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 19, @@ -5191,8 +5191,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729676249, - "last_issuance_block_time": 1729676262, + "first_issuance_block_time": 1729678447, + "last_issuance_block_time": 1729678460, "supply_normalized": "0.00000019" } ], @@ -5204,8 +5204,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 10000000000, @@ -5213,15 +5213,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729676212, - "last_issuance_block_time": 1729676224, + "first_issuance_block_time": 1729678408, + "last_issuance_block_time": 1729678421, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5229,14 +5229,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5244,7 +5244,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5257,7 +5257,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5279,9 +5279,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5296,7 +5296,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5322,9 +5322,9 @@ }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5339,7 +5339,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5365,9 +5365,9 @@ }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5382,7 +5382,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5408,9 +5408,9 @@ }, { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5425,7 +5425,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5451,9 +5451,9 @@ }, { "tx_index": 52, - "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5468,7 +5468,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5499,13 +5499,13 @@ "/v2/assets//matches": { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5519,7 +5519,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5539,13 +5539,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5559,7 +5559,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5579,13 +5579,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "tx0_index": 49, - "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 50, - "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5599,7 +5599,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5626,20 +5626,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5647,20 +5647,20 @@ }, { "block_index": 125, - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", + "event": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5668,20 +5668,20 @@ }, { "block_index": 124, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5689,20 +5689,20 @@ }, { "block_index": 124, - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "event": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5714,16 +5714,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5741,12 +5741,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -5758,16 +5758,16 @@ }, { "block_index": 195, - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "event": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676545, + "block_time": 1729678723, "asset_info": { "divisible": true, "asset_longname": null, @@ -5779,16 +5779,16 @@ }, { "block_index": 194, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "divisible": true, "asset_longname": null, @@ -5800,16 +5800,16 @@ }, { "block_index": 194, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "divisible": true, "asset_longname": null, @@ -5821,16 +5821,16 @@ }, { "block_index": 193, - "address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "asset_info": { "divisible": true, "asset_longname": null, @@ -5848,20 +5848,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -5883,14 +5883,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", + "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -5905,20 +5905,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -5933,20 +5933,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -5961,20 +5961,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -5989,7 +5989,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729676212, + "block_time": 1729678408, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6001,10 +6001,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6012,7 +6012,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -6025,10 +6025,10 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6036,7 +6036,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -6049,10 +6049,10 @@ }, { "tx_index": 55, - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", "block_index": 189, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -6060,7 +6060,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676520, + "block_time": 1729678697, "asset_info": { "divisible": true, "asset_longname": null, @@ -6073,10 +6073,10 @@ }, { "tx_index": 44, - "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", + "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", "block_index": 157, - "source": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", - "destination": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", + "destination": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6084,7 +6084,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676379, + "block_time": 1729678568, "asset_info": { "divisible": true, "asset_longname": null, @@ -6097,10 +6097,10 @@ }, { "tx_index": 43, - "tx_hash": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad", + "tx_hash": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8", "block_index": 156, - "source": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", - "destination": "6a1620223076bde17b497f6f02a229c4978e7877f5c7b7480ab16446b392e8ad:0", + "source": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", + "destination": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6108,7 +6108,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676375, + "block_time": 1729678562, "asset_info": { "divisible": true, "asset_longname": null, @@ -6127,9 +6127,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6138,7 +6138,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6148,7 +6148,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -6164,9 +6164,9 @@ }, { "tx_index": 29, - "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", + "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", "block_index": 142, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6175,7 +6175,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6185,7 +6185,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676304, + "block_time": 1729678493, "asset_info": { "divisible": true, "asset_longname": null, @@ -6201,9 +6201,9 @@ }, { "tx_index": 30, - "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", + "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", "block_index": 150, - "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", + "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6211,10 +6211,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6222,7 +6222,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676339, + "block_time": 1729678537, "asset_info": { "divisible": true, "asset_longname": null, @@ -6238,18 +6238,18 @@ }, { "tx_index": 33, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6259,7 +6259,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -6280,9 +6280,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6291,7 +6291,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6301,7 +6301,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -6329,7 +6329,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6337,7 +6337,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6346,7 +6346,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6354,7 +6354,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6363,7 +6363,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6371,7 +6371,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6380,7 +6380,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6395,27 +6395,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6430,7 +6430,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -6444,27 +6444,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", + "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", "block_index": 147, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6479,7 +6479,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676326, + "block_time": 1729678514, "asset_info": { "divisible": true, "asset_longname": null, @@ -6493,19 +6493,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6513,7 +6513,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6528,7 +6528,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -6542,19 +6542,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6562,7 +6562,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6577,7 +6577,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -6598,8 +6598,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "owner": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false, "supply": 0, @@ -6607,8 +6607,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729676388, - "last_issuance_block_time": 1729676388, + "first_issuance_block_time": 1729678575, + "last_issuance_block_time": 1729678575, "supply_normalized": "0.00000000" } ], @@ -6618,10 +6618,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6646,7 +6646,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6664,22 +6664,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "342e734e277595493d7ad2d07e79aaee2f4f81bc3fdee41e6be1127326b2aba7", + "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6688,22 +6688,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29", + "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676219, + "block_time": 1729678417, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6712,22 +6712,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6742,22 +6742,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "4543d656d24800a0a79c511bdb2c5619425971ecba63352646036f27e4067c3b", + "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", "tx_index": 11, "block_index": 123, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676215, + "block_time": 1729678413, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -6773,9 +6773,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6790,7 +6790,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6816,9 +6816,9 @@ }, { "tx_index": 52, - "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6833,7 +6833,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6859,9 +6859,9 @@ }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6876,7 +6876,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6902,9 +6902,9 @@ }, { "tx_index": 54, - "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "block_index": 188, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6919,7 +6919,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6945,9 +6945,9 @@ }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6962,7 +6962,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6993,9 +6993,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7010,7 +7010,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7038,13 +7038,13 @@ "/v2/orders//matches": { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7058,7 +7058,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7078,13 +7078,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7098,7 +7098,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7125,15 +7125,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "btc_amount": 2000, - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "status": "valid", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "btc_amount_normalized": "0.00002000" } ], @@ -7144,9 +7144,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "block_index": 187, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7164,7 +7164,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729676502, + "block_time": 1729678688, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7190,9 +7190,9 @@ }, { "tx_index": 54, - "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "block_index": 188, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7210,7 +7210,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7236,9 +7236,9 @@ }, { "tx_index": 49, - "tx_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", + "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", "block_index": 184, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7256,7 +7256,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676422, + "block_time": 1729678609, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7282,9 +7282,9 @@ }, { "tx_index": 51, - "tx_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "block_index": 188, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7302,7 +7302,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676506, + "block_time": 1729678693, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7328,9 +7328,9 @@ }, { "tx_index": 57, - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", "block_index": 192, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7348,7 +7348,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676532, + "block_time": 1729678710, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7379,13 +7379,13 @@ "/v2/orders///matches": { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7402,7 +7402,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7422,13 +7422,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7445,7 +7445,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7465,13 +7465,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "tx0_index": 49, - "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 50, - "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7488,7 +7488,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729676422, + "block_time": 1729678609, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7514,13 +7514,13 @@ "/v2/order_matches": { "result": [ { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 54, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7534,7 +7534,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7554,13 +7554,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "tx0_index": 51, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 52, - "tx1_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7574,7 +7574,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729676502, + "block_time": 1729678688, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7594,13 +7594,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", + "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", "tx0_index": 49, - "tx0_hash": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx1_index": 50, - "tx1_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7614,7 +7614,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729676422, + "block_time": 1729678609, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7659,66 +7659,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", + "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", "block_index": 121, - "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", + "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729676208, + "block_time": 1729678403, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "e5536dd615707c7c3db9ed85b0ee4e26962ef522412e53a7583562bf53f9bed6", + "tx_hash": "2b92c5ba4bff308186e1596603e2fb377e8b02051a85215b4b61c17b3d1a6d90", "block_index": 120, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729676204, + "block_time": 1729678399, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3da47037f73ceafc5ffae318453f303e77b32ea545da24985f5790a260c54bea", + "tx_hash": "cc87e0fae13e23537d7b3cad7e7cd469f265c9a066362727f6ea8698b7b239f6", "block_index": 119, - "source": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74", + "source": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729676199, + "block_time": 1729678395, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "27f9b9e7d012e6e75b08b1d7a450dc3b17b2d14eb4b123e83087b367364ba3d0", + "tx_hash": "4e1b0094704b6e6e79f2927b09491dc1f2d5109a4e94f701d4167a0b6f6b53be", "block_index": 118, - "source": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729676195, + "block_time": 1729678391, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "4ba484c83bb8ab87d399d82e60a5a70b07df9458db02638f11b6bfec48060b5a", + "tx_hash": "399533b3fb6b2ff6fca2246201a37f73f7d45e7df2445f476364fce0fd2f3fef", "block_index": 117, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729676191, + "block_time": 1729678388, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7730,9 +7730,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7741,7 +7741,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7751,7 +7751,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -7767,9 +7767,9 @@ }, { "tx_index": 29, - "tx_hash": "cad08f9b94776d35a24c9639d5bdd19ac9494ccdf4d0ef02b99d8818f2e9f628", + "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", "block_index": 142, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7778,7 +7778,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7788,7 +7788,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676304, + "block_time": 1729678493, "asset_info": { "divisible": true, "asset_longname": null, @@ -7804,9 +7804,9 @@ }, { "tx_index": 30, - "tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", + "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", "block_index": 150, - "source": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", + "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7814,10 +7814,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "7ddb62c6b778f596be02d23f65bef3d3e225f18cd7f494b6d4b1a84f94003838", - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7825,7 +7825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676339, + "block_time": 1729678537, "asset_info": { "divisible": true, "asset_longname": null, @@ -7841,18 +7841,18 @@ }, { "tx_index": 33, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7862,7 +7862,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -7883,9 +7883,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7894,7 +7894,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7904,7 +7904,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -7924,19 +7924,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7944,7 +7944,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7959,7 +7959,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -7973,19 +7973,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7993,7 +7993,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8008,7 +8008,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -8027,20 +8027,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -8061,20 +8061,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -8097,12 +8097,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "tx_index": 41, - "utxo": "f8e5c6d3932e4e12540dd61fd24667d052d3e3514a41f9507d98d44f197fc655:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "utxo": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8114,16 +8114,16 @@ }, { "block_index": 154, - "address": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "address": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "divisible": true, "asset_longname": null, @@ -8144,27 +8144,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 561, @@ -8173,14 +8173,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -8191,9 +8191,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 560, @@ -8202,9 +8202,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -8214,24 +8214,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -8241,9 +8241,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 558, @@ -8255,15 +8255,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } }, "/v2/events/counts": { @@ -8298,16 +8298,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -8317,9 +8317,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 557, @@ -8329,12 +8329,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -8344,9 +8344,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 554, @@ -8356,39 +8356,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", - "utxo_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "block_time": 1729676554, + "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "divisible": true, "asset_longname": null, @@ -8398,36 +8398,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "block_time": 1729676541 + "block_time": 1729678718 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729676541, + "block_time": 1729678718, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "block_time": 1729676541 + "block_time": 1729678718 } ], "next_cursor": 536, @@ -8444,27 +8444,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8479,7 +8479,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -8493,27 +8493,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", + "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", "block_index": 147, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "destination": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "last_status_tx_hash": null, - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8528,7 +8528,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729676326, + "block_time": 1729678514, "asset_info": { "divisible": true, "asset_longname": null, @@ -8542,19 +8542,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "26319cceece089393604608902642bf70fbe5e092ace8a6d3777fbd19273ee37", + "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8562,7 +8562,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8577,7 +8577,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676300, + "block_time": 1729678488, "asset_info": { "divisible": true, "asset_longname": null, @@ -8591,19 +8591,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8af9f93955ecf98c7e5ea985fd5736f130aaf520b7d6b8c0d31acf49dbdc42ae", + "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", "block_index": 140, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "b9203b25663003c5898b02ec62e6819c554235734109fdb567e79debf97b1ba2", + "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8611,7 +8611,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8626,7 +8626,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729676286, + "block_time": 1729678484, "asset_info": { "divisible": true, "asset_longname": null, @@ -8645,10 +8645,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8656,7 +8656,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -8669,10 +8669,10 @@ }, { "tx_index": 62, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8680,11 +8680,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -8693,10 +8693,10 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8704,7 +8704,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -8717,10 +8717,10 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8728,11 +8728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -8741,10 +8741,10 @@ }, { "tx_index": 56, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8752,11 +8752,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -8771,14 +8771,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -8793,20 +8793,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "d7ac96b692fd275696def5dd34a302971b2ac29821f76f381bb8b5155d3857e2", + "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -8821,20 +8821,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729676392, + "block_time": 1729678579, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "70e72a43b33eca602c63e2713bd44ca17ef4f13c52948493180be3a59e770238", + "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -8849,20 +8849,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676388, + "block_time": 1729678575, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "c7acec1d10b6ad351eb7cfd1ca0c0c4e300de121b938cf6f3a49bcfa8455dc3e", + "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -8877,20 +8877,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676383, + "block_time": 1729678571, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", + "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "issuer": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "transfer": false, "callable": false, "call_date": 0, @@ -8905,7 +8905,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676379, + "block_time": 1729678568, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8916,14 +8916,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "transfer": false, "callable": false, "call_date": 0, @@ -8938,7 +8938,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8947,16 +8947,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -8967,16 +8967,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" } ], @@ -8987,9 +8987,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "block_index": 138, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8997,14 +8997,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676278, + "block_time": 1729678476, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "fb4ec1402d8f5c6eaaf6d05e58f71f5fcb4b0e95216d7afc8c23df54f7214c43", + "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", "block_index": 137, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9012,7 +9012,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676274, + "block_time": 1729678471, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9022,9 +9022,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "block_index": 138, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9032,17 +9032,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729676278, + "block_time": 1729678476, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9067,7 +9067,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9076,10 +9076,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9104,7 +9104,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729676266, + "block_time": 1729678464, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9116,10 +9116,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9144,7 +9144,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729676249, + "block_time": 1729678447, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9156,10 +9156,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9184,7 +9184,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729676245, + "block_time": 1729678442, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9196,10 +9196,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "6e2864d52bc5cc617df63fb57104e45e6ed0ad925bc317efc17d3fd2ee56fa1a", + "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9224,7 +9224,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729676224, + "block_time": 1729678421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9242,22 +9242,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9266,22 +9266,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "71ff6eee6ea9a0ad658ee80b4fd0e585a9930c5dc08f68dba7cbe052425d1b43", + "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", "tx_index": 21, "block_index": 134, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676262, + "block_time": 1729678460, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9290,22 +9290,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "86e711119b54874bb69607d5eac62ed89dcf3feb15b01d3fd6222590eec1008f", + "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", "tx_index": 20, "block_index": 133, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676258, + "block_time": 1729678455, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9314,22 +9314,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cbbcc03f230c40df0bdcfab9909862a315ad4ca39e9abda36f282d3fc8035295", + "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", "tx_index": 19, "block_index": 132, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "0234d8d203458ca223c552d35a47d6898bbb94feee422dcaaed59d1580c35812", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676253, + "block_time": 1729678451, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9338,22 +9338,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "2295039e748f4b0d70a7e6dfa7d556337e04c3837b1ec2bb63210dfcdd27213f", + "tx_hash": "696c4abfb0832fbf79528b17657b0c9f289c40aa1a503c32dee9760562df53a4", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "fairminter_tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676241, + "block_time": 1729678438, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9367,22 +9367,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, "block_index": 136, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -9399,8 +9399,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556", - "address": "bcrt1qsmylhr05uyfnvsshx3d9xnkpthc3jrchsngh95" + "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", + "address": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn" }, { "vout": 2, @@ -9408,8 +9408,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec", - "address": "bcrt1qtfmya0z69skldxlsgjqm3vh3t27p9f9xwc7s74" + "txid": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", + "address": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038" } ], "next_cursor": null, @@ -9418,28 +9418,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "6416e5c6402521488155fd8b4a244d15170c12da9b1d02861d119206b009dc29" + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832" }, { - "tx_hash": "5f537f253413844cf67226a290f3660d20482a5ad563f1fa9a222c3f1a07a057" + "tx_hash": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a" }, { - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667" + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468" }, { - "tx_hash": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86" + "tx_hash": "e60162f6e8017525f64b045ef6ff92d26e407e45f18b6a639cca67e7709cf498" }, { - "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a" + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" }, { - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2" + "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4" }, { - "tx_hash": "db4eedd503a3a78611f54a1df9483686777f866a745f7644adae81d1e2fa9fbf" + "tx_hash": "f36d45bcc314f9964b7edc112f5a3647777b7396316cc1b2bacb9faccf6b4ab5" }, { - "tx_hash": "47bf5a24eb83c74d78bffde051f355092efbe4ab6b951f01bedf5a607268a2eb" + "tx_hash": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc" } ], "next_cursor": null, @@ -9447,8 +9447,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 1, - "tx_hash": "0979edfa8c2f003fdd07c0d012947833cf66d9395d51d971bc624b4b7c203472" + "block_index": 6, + "tx_hash": "f0206715d5e808c47174ba1de958c4299fa90963cc49f3f708096968ddc8e9a9" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9459,17 +9459,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "9e5004bb6ff74f82104f9f25b2d57229c5575dc93256ddd81fb7c503dfce8556" + "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02e628da8704464d5f1526d5db58f8331c4ee398faf7cfe152b59f9bd462eaf69a" + "result": "0254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101ec5ecb5505352fabe1e553387612aead6cd063550a2e97d5776fa1fa9e809deb0100000000ffffffff03e8030000000000001600141a4276a941acf906f7f9539bb10d51d26ee94e4000000000000000000c6a0a5e7a06c5f66b6d5b1703dced08270100000016001474ddbc39c1f0f36185e16375629f2623c46061c802473044022071a2783b88cda714f84ce3a1d8ba5080f13dc91eb0725c4c619a11df84853ad902206321ea29901ce9346a49536059adec2a4d5c6ae5b9e0fda1084e0957d0fec8b801210269ff0be68bd0b9d62624826865b687dce119a43371f72e17b31b86ad0df3e42c00000000" + "result": "020000000001017d6b9b0f9e939c920785e1be72ff459b709cc934eb4e20d214666e4a03003a370100000000ffffffff03e803000000000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194200000000000000000c6a0a95c6de5e62c4fa610cd8dced082701000000160014739d9c26e6ee51a22ade8e3745236c326b19a8d10247304402205fd85e2f2617f2cdcebf90bc31961766a27a9f50c3a4e3474cd64692f4fbb232022040b17ff6b1519b5449f01ae3362af4bd12ba6addab6e0cffdcb51abf938957ba01210378cff7b4313e8c6382234edac20e0c4b25886ca678fd5cbd9e487627f0f9b2df00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9492,27 +9492,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63 }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "quantity": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, "asset_info": { "divisible": true, @@ -9523,22 +9523,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -9548,22 +9548,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 196, - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -9573,30 +9573,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729676559.013981, + "block_time": 1729678736.7024257, "btc_amount": 0, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "destination": "", "fee": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, - "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", + "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -9610,7 +9610,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, @@ -9619,19 +9619,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -9641,7 +9641,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, @@ -9650,27 +9650,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63 }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "quantity": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, "asset_info": { "divisible": true, @@ -9681,22 +9681,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "CREDIT", "params": { - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -9706,22 +9706,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "asset": "XCP", "block_index": 196, - "event": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -9731,30 +9731,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 }, { - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729676559.013981, + "block_time": 1729678736.7024257, "btc_amount": 0, - "data": "020000000000000001000000000000271080f5edcaeb38aff35cdd800bcca3c1921c8ae2941c", + "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", "destination": "", "fee": 10000, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", - "tx_hash": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", "tx_index": 63, - "utxos_info": "0a18ef1527db6addc8ba997acf7cb155930a7b18de9164975c6e889a5626d5ff:1", + "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "memo": null, "asset_info": { "divisible": true, @@ -9768,7 +9768,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729676559.013981 + "timestamp": 1729678736.7024257 } ], "next_cursor": null, @@ -9790,15 +9790,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", "block_index": 196, - "block_time": 1729676554, + "block_time": 1729678732, "difficulty": 545259519, - "previous_block_hash": "2bdd4291550ee4e5fb33f6f8a7e48bf795ff5085390e3b3d6b74a989e66a2327" + "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d" }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 544, @@ -9810,17 +9810,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6ee892fcadd3cc5b202d4b20fd63d8cb7c64a35cd264c80d997aa3a966c93a6b", + "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", "block_index": 196, - "block_time": 1729676554, + "block_time": 1729678732, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "fee": 0, - "source": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "utxos_info": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1 63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9830,9 +9830,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 545, @@ -9846,16 +9846,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "out_index": 0, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 277, @@ -9868,15 +9868,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9e1bed2d8d5100f6a5ee84eb52986fb7b22a5d8e3e0f549fd1ab089c9a3d3113", - "messages_hash": "9b132609bfdf23ced20a6281c6f8eddddc6e2cbbf2cfa614ba742cfd0c1bae59", + "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", + "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", "transaction_count": 1, - "txlist_hash": "b25c0d9b50e8b4a17d075c594675504b261a1f57579414ed2340796624a5ba2d", - "block_time": 1729676554 + "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", + "block_time": 1729678732 }, "tx_hash": null, "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 549, @@ -9889,12 +9889,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62 }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 548, @@ -9910,12 +9910,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 1500000000, "tx_index": 62, - "utxo": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", - "utxo_address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", - "block_time": 1729676554, + "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -9925,9 +9925,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 553, @@ -9939,16 +9939,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -9958,9 +9958,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 557, @@ -9974,14 +9974,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "memo": null, "quantity": 10000, - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "status": "valid", - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", "tx_index": 55, - "block_time": 1729676520, + "block_time": 1729678697, "asset_info": { "divisible": true, "asset_longname": null, @@ -9991,9 +9991,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "876a780fa341a5091dcdbd61810a4f93bb81f4a7ce4e0048e57db959e92673a2", + "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", "block_index": 189, - "block_time": 1729676520 + "block_time": 1729678697 } ], "next_cursor": null, @@ -10007,15 +10007,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "tx_index": 56, - "block_time": 1729676525, + "block_time": 1729678701, "asset_info": { "divisible": true, "asset_longname": null, @@ -10025,9 +10025,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b4eb807557dbd1a2cf5027232c9309336727720dffef6e9b5770f9429ad38077", + "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", "block_index": 190, - "block_time": 1729676525 + "block_time": 1729678701 } ], "next_cursor": 509, @@ -10050,20 +10050,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "status": "valid", - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "tx_index": 60, - "block_time": 1729676541, + "block_time": 1729678718, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a2874b2555cdc6d2e60f4a78083fa750edbb492551338bf7c223c5d34ddb2667", + "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", "block_index": 194, - "block_time": 1729676541 + "block_time": 1729678718 } ], "next_cursor": null, @@ -10080,15 +10080,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "tx_index": 41, - "block_time": 1729676356, + "block_time": 1729678554, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10102,9 +10102,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "27fceb3a86ebec400a4b0004ef1adfa68bdd4a4dcbd46eaf5ce1f1afc76017d8", + "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", "block_index": 154, - "block_time": 1729676356 + "block_time": 1729678554 } ], "next_cursor": null, @@ -10125,11 +10125,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729676396 + "block_time": 1729678584 }, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "block_index": 161, - "block_time": 1729676396 + "block_time": 1729678584 } ], "next_cursor": 381, @@ -10152,22 +10152,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", "transfer": false, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "tx_index": 48, - "block_time": 1729676396, + "block_time": 1729678584, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5126f7311a99a69665ae86dc61f10835ebb666144691ab249a6125fdc88a231c", + "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", "block_index": 161, - "block_time": 1729676396 + "block_time": 1729678584 } ], "next_cursor": 388, @@ -10182,12 +10182,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q8zw0rlpp7qcr263tfqu73jmxmjdadx4ml4wmmh", + "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", "status": "valid", "tag": "64657374726f79", - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "tx_index": 61, - "block_time": 1729676545, + "block_time": 1729678723, "asset_info": { "divisible": true, "asset_longname": null, @@ -10197,9 +10197,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "028f75a0c287e496b60681194c86f2be7dec09fa7a8aade4d9e9d7c01b5722d4", + "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", "block_index": 195, - "block_time": 1729676545 + "block_time": 1729678723 } ], "next_cursor": 157, @@ -10224,11 +10224,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "open", - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "tx_index": 59, - "block_time": 1729676536, + "block_time": 1729678714, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10252,9 +10252,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b2ca6c40990ac0475132459ad193bb6628193bd1fd742c256b19de2ab16078c2", + "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", "block_index": 193, - "block_time": 1729676536 + "block_time": 1729678714 } ], "next_cursor": 516, @@ -10272,20 +10272,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a", + "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", "tx0_index": 51, - "tx1_address": "bcrt1q7hku46ec4le4ehvqp0x28svjrj9w99qurrpw4d", + "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "tx1_index": 54, - "block_time": 1729676506, + "block_time": 1729678693, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10304,9 +10304,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1da105b433c9a0c7492cdafa945647a119eefb04ceee2c26460be5053a69629a", + "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", "block_index": 188, - "block_time": 1729676506 + "block_time": 1729678693 } ], "next_cursor": 475, @@ -10319,11 +10319,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c" + "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694" }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 } ], "next_cursor": 490, @@ -10336,11 +10336,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3" + "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682" }, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_time": 1729676502 + "block_time": 1729678688 } ], "next_cursor": null, @@ -10352,13 +10352,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", + "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", "status": "completed" }, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_time": 1729676502 + "block_time": 1729678688 } ], "next_cursor": 454, @@ -10372,18 +10372,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "order_match_id": "f6bff74763af8645710c8e2c9f1f067c285d3bd6e0fe27691c0176d421d5319a_1e895f33d2a1ca7da9f2fcad5afffdb2747bfc2d986cfd3be478ef8da63fe8e3", - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "status": "valid", - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "tx_index": 53, - "block_time": 1729676502, + "block_time": 1729678688, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "c53e759a93080b5032471725f9db7f9114e2f60be58e13149caa0fbb2ecabfa3", + "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", "block_index": 187, - "block_time": 1729676502 + "block_time": 1729678688 } ], "next_cursor": null, @@ -10396,16 +10396,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "6b5be1e7afab06544fb2277dbd1f518720856244606bba98440ece7fd6fe8f9c", - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "tx_index": 58, - "block_time": 1729676532 + "block_time": 1729678710 }, - "tx_hash": "face2455bfc3dc4172ce9fe1330723db0b8b0a2b11711baeb462df7df5997650", + "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", "block_index": 192, - "block_time": 1729676532 + "block_time": 1729678710 } ], "next_cursor": null, @@ -10418,13 +10418,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "block_time": 1729676422 + "order_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "block_time": 1729678609 }, "tx_hash": null, "block_index": 184, - "block_time": 1729676422 + "block_time": 1729678609 } ], "next_cursor": 460, @@ -10437,14 +10437,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "85788f22359b12a255226a71ece3bf50a5dd61993144627e7ab3129353ac4b50_e3976725fb9e286d79c7d9d364919773cb4118bbe92b261b439eeb820badecec", - "tx0_address": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "tx1_address": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", - "block_time": 1729676422 + "order_match_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "block_time": 1729678609 }, "tx_hash": null, "block_index": 184, - "block_time": 1729676422 + "block_time": 1729678609 } ], "next_cursor": null, @@ -10462,14 +10462,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "origin": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "satoshirate": 1, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "tx_index": 33, - "block_time": 1729676321, + "block_time": 1729678510, "asset_info": { "divisible": true, "asset_longname": null, @@ -10482,9 +10482,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "block_index": 146, - "block_time": 1729676321 + "block_time": 1729678510 } ], "next_cursor": 254, @@ -10499,9 +10499,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": 0, - "tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", + "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", "asset_info": { "divisible": true, "asset_longname": null, @@ -10511,9 +10511,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 302, @@ -10527,13 +10527,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mtLyJoCRwiL6BD2WeagXWcUyC5FAthVjMq", + "destination": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", "dispense_quantity": 10, - "dispenser_tx_hash": "f212f6c5324dc9b5a0120d0bbeb75e23cbf393c98a173c21e63412f4810307de", - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", - "tx_hash": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", + "dispenser_tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx_hash": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", "tx_index": 31, - "block_time": 1729676313, + "block_time": 1729678501, "asset_info": { "divisible": true, "asset_longname": null, @@ -10543,9 +10543,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "87231ca35222e35119e9ffaa99132d109539ca6395a24b8600a959e77e4922c6", + "tx_hash": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", "block_index": 144, - "block_time": 1729676313 + "block_time": 1729678501 } ], "next_cursor": null, @@ -10560,14 +10560,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwnwmcwwp7rekrp0pvd6k98exy0zxqcwgpz9yfu", + "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "addcd9a44101b91863411de6afdae6babb2869f7e61938237f91fb72497f2a85", - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -10578,9 +10578,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 280, @@ -10595,19 +10595,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qrfp8d22p4nusdale2wdmzr236fhwjnjqn2lupx", + "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "tx_index": 25, "value": 66600.0, - "block_time": 1729676278, + "block_time": 1729678476, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6b6043074aa0468a2e23c9b8819bfce1ea8f0090e93e8b7c894ecdc79ccf7d9f", + "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", "block_index": 138, - "block_time": 1729676278 + "block_time": 1729678476 } ], "next_cursor": 213, @@ -10638,12 +10638,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "start_block": 0, "status": "open", - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "tx_index": 42, - "block_time": 1729676370, + "block_time": 1729678558, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10651,9 +10651,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "fe8152f76fab05cf8c3c26150e33e1aa16d117094904ec713c4230a1cc9985c6", + "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", "block_index": 155, - "block_time": 1729676370 + "block_time": 1729678558 } ], "next_cursor": 196, @@ -10666,11 +10666,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "dab9e71074f51361fc65c6076bd982e7818256c304e379f0d775cf69f185cf5b" + "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052" }, "tx_hash": null, "block_index": 130, - "block_time": 1729676245 + "block_time": 1729678442 } ], "next_cursor": 110, @@ -10686,17 +10686,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "dc92b10d1aa8f78ba175bf6db622ef5ca181483ce7568492b60822eeffd6c949", + "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", "paid_quantity": 34, - "source": "bcrt1q5nxlj904njl7xjmcar6wwmzxewd0fa9q0ywx7a", + "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", "status": "valid", - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "tx_index": 23, - "block_time": 1729676270, + "block_time": 1729678468, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, @@ -10704,9 +10704,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ffd7cf0f09bc8c139f7280ff8d1b31e83952ee12334e39098f187ea2cdb11945", + "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", "block_index": 136, - "block_time": 1729676270 + "block_time": 1729678468 } ], "next_cursor": 190, @@ -10720,28 +10720,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11:1", + "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "status": "valid", - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "tx_index": 39, - "block_time": 1729676347, + "block_time": 1729678546, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7832e84567026bb91e9d882d248a04b4d523714694aadb25bbe36113f46cbc11", + "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", "block_index": 152, - "block_time": 1729676347 + "block_time": 1729678546 } ], "next_cursor": 296, @@ -10755,28 +10755,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qclf9e57mv5nd77epx3gfws6uyal30fu2lw4n76", + "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "b760af2ee38b7c1b97fd15e7e823f0c0fe76f9d47eae8cd40c87b43289bcbe86:0", + "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", "status": "valid", - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "tx_index": 38, - "block_time": 1729676343, + "block_time": 1729678541, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ylad3lc9jm96q2jd7ct6u3q22mmh0jqrh4k5h", + "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "42dc4dd26294bd1ef1df2e893e0adf406effd4948cbceae74c77c3ded16045a8", + "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", "block_index": 151, - "block_time": 1729676343 + "block_time": 1729678541 } ], "next_cursor": null, @@ -10790,14 +10790,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a:0", + "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", "msg_index": 1, "quantity": 1500000000, - "source": "eb9d809efaa16f77d5972e0a5563d06cadae12763853e5e1ab2f350555cb5eec:1", + "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", "status": "valid", - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "tx_index": 62, - "block_time": 1729676554, + "block_time": 1729678732, "asset_info": { "divisible": true, "asset_longname": null, @@ -10807,9 +10807,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "63f0aafc6cbf96e9925154cfa9a3a894dd16d41b3164b0d62529fcf5f821fd3a", + "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", "block_index": 196, - "block_time": 1729676554 + "block_time": 1729678732 } ], "next_cursor": 555, @@ -10824,17 +10824,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qx8y2syh0tjp899shqfa60ppdtmueqmxuqvzadc", + "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", "status": "valid", - "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", + "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", "tx_index": 9, - "block_time": 1729676208, + "block_time": 1729678403, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "e6559f838f2fd7e5cf1f3d4b4d3bb40d94e78df760632c9aecd38de5649ddb92", + "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", "block_index": 121, - "block_time": 1729676208 + "block_time": 1729678403 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py index 6a1af52a1c..56610ef88a 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -651,13 +651,15 @@ }, { "url": "addresses/$ADDRESS_6/balances/MYASSETA", - "result": { - "address": None, - "asset": "MYASSETA", - "quantity": 1500000000, - "utxo": "$TX_HASH:0", - "utxo_address": "$ADDRESS_6", - }, + "result": [ + { + "address": None, + "asset": "MYASSETA", + "quantity": 1500000000, + "utxo": "$TX_HASH:0", + "utxo_address": "$ADDRESS_6", + } + ], }, ], }, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 3fff49748f..f2a442f66c 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -152,14 +152,14 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, data, r try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError: + except AssertionError as e: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - # raise e + raise e def run_item(node, item, context): diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index fa2d3d5db0..294c92ca85 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -26,6 +26,7 @@ Backwards-incompatible change - Add `status` argument for Fairminters routes - Made `/blocks/last` faster by adding an index to the `ledger_hash` field - `/v2/addresses/
/sweeps` now also searches by the `destination` field +- Add `asset_events` argument for Issuances routes ## CLI From 2a77e667d919782c663aadc19c2b369d49b32f4d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 10:44:01 +0000 Subject: [PATCH 41/71] add --bootstrap-url support to start command --- counterparty-core/counterpartycore/cli.py | 4 +--- release-notes/release-notes-v10.5.1.md | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/cli.py b/counterparty-core/counterpartycore/cli.py index ee0561d9d6..c84c2be780 100755 --- a/counterparty-core/counterpartycore/cli.py +++ b/counterparty-core/counterpartycore/cli.py @@ -351,6 +351,7 @@ def float_range_checker(arg): "help": "number of threads per worker for the Gunicorn WSGI server (if enabled)", }, ], + [("--bootstrap-url",), {"type": str, "help": "the URL of the bootstrap snapshot to use"}], ] @@ -457,9 +458,6 @@ def main(): parser_bootstrap = subparsers.add_parser( "bootstrap", help="bootstrap database with hosted snapshot" ) - parser_bootstrap.add_argument( - "--bootstrap-url", help="the URL of the bootstrap snapshot to use" - ) setup.add_config_arguments(parser_bootstrap, CONFIG_ARGS, configfile) parser_checkdb = subparsers.add_parser("check-db", help="do an integrity check on the database") diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index 294c92ca85..40f8b0cb0f 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -30,6 +30,7 @@ Backwards-incompatible change ## CLI +- `start` command supports now `--bootstrap-url` # Credits From ee6e25072293dfa49c22fb6540e21f27f0d5e403 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 10:51:50 +0000 Subject: [PATCH 42/71] Correctly catch invalid pubkey in compose API --- counterparty-core/counterpartycore/lib/transaction.py | 7 +++++-- release-notes/release-notes-v10.5.1.md | 2 ++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 60ebb3209d..24972c9919 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -44,8 +44,11 @@ def collect_public_keys(pubkeys): raise exceptions.TransactionError("Invalid pubkeys.") for pubkey in provided_pubkeys: - if not script.is_fully_valid(binascii.unhexlify(pubkey)): - raise exceptions.ComposeError(f"invalid public key: {pubkey}") + try: + if not script.is_fully_valid(binascii.unhexlify(pubkey)): + raise exceptions.ComposeError(f"invalid public key: {pubkey}") + except binascii.Error as e: + raise exceptions.ComposeError(f"invalid public key: {pubkey}") from e return provided_pubkeys diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index 40f8b0cb0f..7aa39e9d12 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -14,6 +14,8 @@ Backwards-incompatible change ## Bugfixes +- Correctly catch invalid pubkey in compose API + ## Codebase From 05cb8ad253760090de7eb0614d1a4dd353853d31 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 11:33:00 +0000 Subject: [PATCH 43/71] Add route /v2/compose/attach/estimatexcpfees --- apiary.apib | 3612 +++++++++-------- .../counterpartycore/lib/api/compose.py | 9 + .../counterpartycore/lib/api/routes.py | 1 + .../test/fixtures/api_v2_fixtures.json | 20 + .../test/regtest/apidoc/apicache.json | 3264 +++++++-------- dredd.yml | 1 + release-notes/release-notes-v10.5.1.md | 1 + 7 files changed, 3475 insertions(+), 3433 deletions(-) diff --git a/apiary.apib b/apiary.apib index 633dc83f75..b08017b857 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-23 10:19:08.981353. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-23 11:27:41.215477. 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": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", "block_index": 196, - "block_time": 1729678732, + "block_time": 1729682844, "difficulty": 545259519, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d" + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8" }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", "block_index": 196, - "block_time": 1729678732, + "block_time": 1729682844, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "fee": 0, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422: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": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "out_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "block_time": 1729678732, + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "block_time": 1729682844, "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": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "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": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "memo": null, "quantity": 10000, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "status": "valid", - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", "tx_index": 55, - "block_time": 1729678697, + "block_time": 1729682809, "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": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", "block_index": 189, - "block_time": 1729678697 + "block_time": 1729682809 } ], "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": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "tx_index": 56, - "block_time": 1729678701, + "block_time": 1729682813, "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": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "block_time": 1729678701 + "block_time": 1729682813 } ], "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": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "status": "valid", - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "block_time": 1729678718 + "block_time": 1729682830 } ], "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": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "tx_index": 41, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "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": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "block_time": 1729678554 + "block_time": 1729682653 } ], "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": 1729678584 + "block_time": 1729682693 }, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "block_index": 161, - "block_time": 1729678584 + "block_time": 1729682693 } ], "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": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", "transfer": false, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "tx_index": 48, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "block_index": 161, - "block_time": 1729678584 + "block_time": 1729682693 } ], "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": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "tx_index": 61, - "block_time": 1729678723, + "block_time": 1729682834, "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": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "block_index": 195, - "block_time": 1729678723 + "block_time": 1729682834 } ], "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": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "open", - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, - "block_time": 1729678714, + "block_time": 1729682826, "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": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 } ], "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": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "tx0_index": 51, - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx1_index": 54, - "block_time": 1729678693, + "block_time": 1729682804, "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": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "block_index": 188, - "block_time": 1729678693 + "block_time": 1729682804 } ], "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": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694" + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f" }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 } ], "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": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682" + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c" }, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_time": 1729678688 + "block_time": 1729682800 } ], "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": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "status": "completed" }, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_time": 1729678688 + "block_time": 1729682800 } ], "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": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "status": "valid", - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "tx_index": 53, - "block_time": 1729678688, + "block_time": 1729682800, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_time": 1729678688 + "block_time": 1729682800 } ], "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": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "tx_index": 58, - "block_time": 1729678710 + "block_time": 1729682822 }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 } ], "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": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "block_time": 1729678609 + "order_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "block_time": 1729682719 }, "tx_hash": null, "block_index": 184, - "block_time": 1729678609 + "block_time": 1729682719 } ], "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": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "block_time": 1729678609 + "order_match_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "block_time": 1729682719 }, "tx_hash": null, "block_index": 184, - "block_time": 1729678609 + "block_time": 1729682719 } ], "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": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "satoshirate": 1, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "tx_index": 33, - "block_time": 1729678510, + "block_time": 1729682619, "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": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "block_index": 146, - "block_time": 1729678510 + "block_time": 1729682619 } ], "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": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "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": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", + "destination": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", "dispense_quantity": 10, - "dispenser_tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "tx_hash": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", + "dispenser_tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx_hash": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", "tx_index": 31, - "block_time": 1729678501, + "block_time": 1729682610, "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": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", + "tx_hash": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", "block_index": 144, - "block_time": 1729678501 + "block_time": 1729682610 } ], "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": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "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": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "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": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "tx_index": 25, "value": 66600.0, - "block_time": 1729678476, + "block_time": 1729682576, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "block_index": 138, - "block_time": 1729678476 + "block_time": 1729682576 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "start_block": 0, "status": "open", - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "block_index": 155, - "block_time": 1729678558 + "block_time": 1729682667 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052" + "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d" }, "tx_hash": null, "block_index": 130, - "block_time": 1729678442 + "block_time": 1729682542 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "paid_quantity": 34, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "status": "valid", - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "block_index": 136, - "block_time": 1729678468 + "block_time": 1729682567 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "tx_index": 39, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "block_index": 152, - "block_time": 1729678546 + "block_time": 1729682644 } ], "next_cursor": 296, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", + "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", "status": "valid", - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "tx_index": 38, - "block_time": 1729678541, + "block_time": 1729682640, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "block_index": 151, - "block_time": 1729678541 + "block_time": 1729682640 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "msg_index": 1, "quantity": 1500000000, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "status": "valid", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 555, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", + "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", "status": "valid", - "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", + "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", "tx_index": 9, - "block_time": 1729678403, + "block_time": 1729682503, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", + "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", "block_index": 121, - "block_time": 1729678403 + "block_time": 1729682503 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", "difficulty": 545259519, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", - "block_time": 1729678723, - "previous_block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", + "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_time": 1729682834, + "previous_block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", "difficulty": 545259519, - "ledger_hash": "0728fdaf217c1411e9f56f3419b4f416747787fc2e86f89daa50d5af665493f1", - "txlist_hash": "6572814c5fe9125c42aa6cc779395eb58bd4d41c1cc7eb81747f0ac3f926faf8", - "messages_hash": "f35d7ce946e7c5dfa6f6dfa9a786fbbc324d87db48f8a2449c91a8fceb03333d", + "ledger_hash": "43e8f0a04c8a827e1a7e252f08793df6fcd648b14cbd6848c1222d700483f013", + "txlist_hash": "dc1a0a29cb30593fa918c114b56f5d538e516f853dd43ac5a492ace4820b5203", + "messages_hash": "f4bec68c1c55f8a9f347cd88b511e669af5220d46247f11c7b4f7ed360c42e94", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", - "block_time": 1729678718, - "previous_block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", + "block_time": 1729682830, + "previous_block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", "difficulty": 545259519, - "ledger_hash": "15098994debc66645d87036ccdc04dff1d8a3e5048cdff460d706ca30786d3e2", - "txlist_hash": "d087cfb215356510fac7478fcdd9b4ab4db014d2e5203f6ca55a2fa9697234fd", - "messages_hash": "963ec904da3f72f664e2b4423a4115b8627779bb149ce30e2e405711a90c4c23", + "ledger_hash": "4b133b746cd856aebcce555e50aaba2f6d1d9be21da74ac968e8460c0d20d80d", + "txlist_hash": "0b979d6cc00b2cdf530ba20965941bbbe8a8b8a2a29bed285e71dc0ae7ef4d46", + "messages_hash": "d710116f570777e25f57698522a7912ad2b60d407964af35d450ca621c73df30", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", - "block_time": 1729678714, - "previous_block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_time": 1729682826, + "previous_block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", "difficulty": 545259519, - "ledger_hash": "09f10cc67e15d319daf6cf589285749418a57620dcb6771b2b320e9284927e2a", - "txlist_hash": "a230bad99dc8551fae755e954f0d7b8e09e78e2672bdea23bcb57c6b420fbdde", - "messages_hash": "564b85500289945fdf7375ae5ed38b9c262d5b490de5487065be0deccd7902a3", + "ledger_hash": "0ba322c20d9896dd65ac2dcd9ea1c444a35c3230f6a1e23c2e39e4f0ac116546", + "txlist_hash": "502b59090ef1f49257b49b9c006f3238e7787ba360ce07ade9cc41403dc6d31f", + "messages_hash": "f054c2e82c5cff4288ba911077591f38c37ce24ecbc7e1d7ee5c361d2c3c03a5", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", - "block_time": 1729678710, - "previous_block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", + "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_time": 1729682822, + "previous_block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", "difficulty": 545259519, - "ledger_hash": "ce03a8bb04d981ec6d0dfcdfcfc590c97a12e17cf39f57ce7ece44447d0f30ba", - "txlist_hash": "59935866d0083a9a32180b40bafb4e44f06627556a1c6106b71855f4dee5af6e", - "messages_hash": "bb2b9603965517fa8be7af0413e406828e177c12598220cf53ed3306f8223723", + "ledger_hash": "5403c4099c4a05514d697a5a8fd014092cac635c4227043d0728c58e298b9cf5", + "txlist_hash": "7725cc03afd6655ea1149cb6f1a47685ac0cb99d933f939cbc84319469152d32", + "messages_hash": "832cf6d8d53a118d96ef968ba60a968977dd8dc4a6d5b4ba44759b36fab99074", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", "difficulty": 545259519, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608` (str, required) - The index of the block to return + + block_hash: `6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", "difficulty": 545259519, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 561, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 560, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" } ], "next_cursor": 558, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 557, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 554, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "object_id": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "block_index": 184, "confirmed": true, - "block_time": 1729678609 + "block_time": 1729682719 }, { "type": "order", - "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, "confirmed": true, - "block_time": 1729678609 + "block_time": 1729682719 }, { "type": "order_match", - "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "block_index": 184, "confirmed": true, - "block_time": 1729678609 + "block_time": 1729682719 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "status": "valid", "confirmed": true, - "block_time": 1729678710 + "block_time": 1729682822 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "block_index": 195, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729678723, + "block_time": 1729682834, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,14 +2329,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -2351,7 +2351,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2385,10 +2385,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2396,7 +2396,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -2409,10 +2409,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2420,11 +2420,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2462,27 +2462,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2497,7 +2497,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -2538,16 +2538,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -2586,10 +2586,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, "block_index": 155, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2614,7 +2614,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2651,22 +2651,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2705,17 +2705,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "block_index": 138, - "block_hash": "06e27cbb53b5e681170e67c387a6656535af9d116bbb336fca2678454338750f", - "block_time": 1729678476, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "25b41c78a1be0d54aeacb4fc1458b97bdc0385669f075166fe0a92980b0e058e", + "block_time": 1729682576, + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535:1", + "utxos_info": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2740,25 +2740,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_hash": "2170ee5e48491e98a338e25f7a4770fd917dea480c2e47ffed408c5139ada59c", - "block_time": 1729678688, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "772ab4c2ade86d700d4d2c7dc40911ae529a206307c0e20d003b8812813261c0", + "block_time": 1729682800, + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "btc_amount": 2000, "fee": 10000, - "data": "0b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f970b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "data": "0b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "supported": true, - "utxos_info": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6:0", + "utxos_info": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "status": "valid" } }, @@ -2773,23 +2773,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", - "block_time": 1729678710, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_time": 1729682822, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "supported": true, - "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", + "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "status": "valid" } }, @@ -2804,17 +2804,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "block_index": 195, - "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", - "block_time": 1729678723, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_time": 1729682834, + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79:1", + "utxos_info": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2844,17 +2844,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "block_index": 146, - "block_hash": "1f819699f7b95d52763cdcd81d4ccd2c51d1ff850af10bf6be211e2f30846303", - "block_time": 1729678510, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "30b62c93ea37e352d305ad36d315ae059eb6b7417e745ceea45a82fe883e4f54", + "block_time": 1729682619, + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00000000000000010000000000000001000000000000271000000000000000010080fb3d8d057149cec7e3810d8fdbc2072a6f911942", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100804f05c52b2783836407de9a1525fede28bf247496", "supported": true, - "utxos_info": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13:1", + "utxos_info": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2866,7 +2866,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": "valid", "asset_info": { "divisible": true, @@ -2890,17 +2890,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2920,17 +2920,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "block_hash": "229fa4bd1fd3441bd6f0f183afc0b8d049e09695e1bc8171c1ced10c6ad7126d", - "block_time": 1729678554, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "1054609704543a204a4b76a5c1c77d4987e2f51055fe52b307564a4c4b997381", + "block_time": 1729682653, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1:1", + "utxos_info": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2943,7 +2943,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2968,17 +2968,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "block_index": 161, - "block_hash": "62f27ceb5af2642de9e08c3b08fe5612bce3083e5b5c187b5ab4f93abf24ecaf", - "block_time": 1729678584, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "2d3357b08e0ff468fb0851f844622ebaee76582a641db5f2be7c43f463a5c6d9", + "block_time": 1729682693, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28:1", + "utxos_info": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3010,17 +3010,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", - "block_time": 1729678714, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_time": 1729682826, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", + "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3063,17 +3063,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", "block_index": 189, - "block_hash": "7d5df3ca8281881710774df9836471620d48e7a86ebc404df7793b6d84f5f823", - "block_time": 1729678697, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "block_hash": "154ccae9703e170496fbc958d27f1817d36af6ed4aa04ffdb0e7561df0ce3b74", + "block_time": 1729682809, + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ba169e41ef98c76eb1b6b1f4740ff07f576f45f1", + "data": "0200000000000000010000000000002710803d3b0471e07117073921fa17a6ef90013da3ceea", "supported": true, - "utxos_info": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832:1", + "utxos_info": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3081,7 +3081,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "memo": null, "asset_info": { "divisible": true, @@ -3104,17 +3104,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", - "block_time": 1729678701, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", + "block_time": 1729682813, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", + "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3122,14 +3122,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -3137,7 +3137,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3163,23 +3163,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", - "block_time": 1729678718, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", + "block_time": 1729682830, + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ba169e41ef98c76eb1b6b1f4740ff07f576f45f1017377656570206d7920617373657473", + "data": "04803d3b0471e07117073921fa17a6ef90013da3ceea017377656570206d7920617373657473", "supported": true, - "utxos_info": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468:1", + "utxos_info": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "memo": "sweep my assets" } @@ -3212,17 +3212,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3235,17 +3235,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "block_index": 195, - "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", - "block_time": 1729678723, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_time": 1729682834, + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79:1", + "utxos_info": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03013900ffffffff0200f2052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da0000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03013300ffffffff0200f2052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee20000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (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. @@ -3303,7 +3303,7 @@ Returns Counterparty information from a raw transaction in hex format. { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "013900", + "script_sig": "013300", "sequence": 4294967295, "coinbase": true } @@ -3311,7 +3311,7 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 5000000000, - "script_pub_key": "0014d5dfbe27ae299c5fd959d4d431b265cb285f92da" + "script_pub_key": "00148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2" }, { "value": 0, @@ -3322,8 +3322,8 @@ Returns Counterparty information from a raw transaction in hex format. "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e", - "tx_id": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e" + "tx_hash": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f", + "tx_id": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f" } } } @@ -3334,7 +3334,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f` (str, required) - Transaction hash + + tx_hash: `eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9` (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. @@ -3345,18 +3345,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5bc03f229c6ccefcf29003757c8025d21e5d86112a624da855ec77f9e3f27e64", + "hash": "291f37f0d68ee13192bc945fa63e0346b75cfe0f8b03d7813b01be3cdccdf9df", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3366,20 +3366,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e43458907eb92d54733b9b266605ca86b0d67d5fe32271ee78f78ed7757e9b327dbdaea94547ce86ed5582a2ab79b" + "script_pub_key": "6a2e7c88a2da47e81d18491abe8640475e2c44399db4b3ab4c98d5889ae2ce7ea6c9cfc89bc544182c369a8e0908fea0" }, { "value": 4999955000, - "script_pub_key": "0014ba169e41ef98c76eb1b6b1f4740ff07f576f45f1" + "script_pub_key": "00143d3b0471e07117073921fa17a6ef90013da3ceea" } ], "vtxinwit": [ - "304402207b2c0b966059a47e6a2dfcebe1ed067326f6978612b540b76744a1195fe547410220253f7dc140443139a42df054e688ea5bdbef7ff953c4f57294d37d2bb830760e01", - "03147bff7b2e3b1267a4dfbbbdc8c96cc069c34d6583fd5e6ec2dd84d81dceb2ff" + "30440220610233430eea2dfe24bcb47a9bbf6bfd7d81e79936110c05b3888b785343fe9e02206f12f9219be34d7da8d45cebf199b1edde1e0fd727893ec160ad889b5ba74dea01", + "02c79d13cefda6ec9da4b9064fab4131c35057629a8d92b01e560b44713c7f2abd" ], "lock_time": 0, - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", - "tx_id": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f" + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_id": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3387,7 +3387,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -3448,17 +3448,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3477,7 +3477,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (str, required) - The hash of the transaction + + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (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. @@ -3489,17 +3489,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3542,12 +3542,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 561, @@ -3556,14 +3556,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3574,9 +3574,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 560, @@ -3585,9 +3585,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -3597,24 +3597,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3624,9 +3624,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 558, @@ -3634,14 +3634,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "msg_index": 1, "quantity": 1500000000, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "status": "valid", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3651,9 +3651,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 557, @@ -3666,7 +3666,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (str, required) - The hash of the transaction to return + + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (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 @@ -3690,12 +3690,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 561, @@ -3704,14 +3704,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3722,9 +3722,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 560, @@ -3733,9 +3733,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -3745,24 +3745,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3772,9 +3772,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 558, @@ -3782,14 +3782,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "msg_index": 1, "quantity": 1500000000, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "status": "valid", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3799,9 +3799,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 557, @@ -3814,7 +3814,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (str, required) - The hash of the transaction to return + + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (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 @@ -3833,10 +3833,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3844,7 +3844,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3857,10 +3857,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3868,11 +3868,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -3890,7 +3890,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (str, required) - The hash of the transaction to return + + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (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 @@ -3910,27 +3910,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3945,7 +3945,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -3989,16 +3989,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -4008,9 +4008,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 557, @@ -4020,12 +4020,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -4035,9 +4035,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 554, @@ -4047,24 +4047,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": null, @@ -4077,7 +4077,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (str, required) - The hash of the transaction to return + + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (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` @@ -4099,16 +4099,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -4118,9 +4118,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 557, @@ -4130,12 +4130,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -4145,9 +4145,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 554, @@ -4157,24 +4157,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": null, @@ -4189,7 +4189,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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 @@ -4213,7 +4213,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4223,7 +4223,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4234,7 +4234,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4244,7 +4244,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4265,7 +4265,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4286,7 +4286,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4307,7 +4307,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4324,7 +4324,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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 @@ -4343,17 +4343,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", - "block_time": 1729678714, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_time": 1729682826, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", + "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4389,23 +4389,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", - "block_time": 1729678710, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_time": 1729682822, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "supported": true, - "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", + "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "status": "valid" } }, @@ -4413,17 +4413,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 191, - "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", - "block_time": 1729678705, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", + "block_time": 1729682817, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", + "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4459,17 +4459,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", - "block_time": 1729678701, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", + "block_time": 1729682813, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", + "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4477,14 +4477,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4492,7 +4492,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4511,25 +4511,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_hash": "2170ee5e48491e98a338e25f7a4770fd917dea480c2e47ffed408c5139ada59c", - "block_time": 1729678688, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "772ab4c2ade86d700d4d2c7dc40911ae529a206307c0e20d003b8812813261c0", + "block_time": 1729682800, + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "btc_amount": 2000, "fee": 10000, - "data": "0b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f970b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "data": "0b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "supported": true, - "utxos_info": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6:0", + "utxos_info": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "status": "valid" } }, @@ -4546,7 +4546,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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 @@ -4582,11 +4582,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "open", - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4610,24 +4610,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "block_index": 193, - "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729678714, + "block_time": 1729682826, "asset_info": { "divisible": true, "asset_longname": null, @@ -4637,25 +4637,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", "block_index": 193, - "block_time": 1729678714, + "block_time": 1729682826, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, - "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", + "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4687,40 +4687,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "tx_index": 58, - "block_time": 1729678710 + "block_time": 1729682822 }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729678710, + "block_time": 1729682822, "asset_info": { "divisible": true, "asset_longname": null, @@ -4730,9 +4730,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 } ], "next_cursor": 520, @@ -4745,7 +4745,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0,bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe,bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj` (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 @@ -4761,17 +4761,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "quantity": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, "asset_info": { "divisible": true, @@ -4782,22 +4782,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -4807,22 +4807,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 196, - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -4832,30 +4832,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729678736.7024257, + "block_time": 1729682848.4038758, "btc_amount": 0, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "destination": "", "fee": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, - "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", + "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -4869,7 +4869,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, @@ -4882,7 +4882,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -4902,7 +4902,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4910,14 +4910,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4925,14 +4925,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4947,7 +4947,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4955,7 +4955,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4972,7 +4972,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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` @@ -4985,7 +4985,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5010,7 +5010,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5060,16 +5060,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "asset_info": { "divisible": true, "asset_longname": null, @@ -5081,16 +5081,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "event": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "asset_info": { "divisible": true, "asset_longname": null, @@ -5102,20 +5102,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "event": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5123,20 +5123,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", + "event": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678571, + "block_time": 1729682681, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5148,16 +5148,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "event": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "tx_index": 39, - "utxo": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", - "utxo_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "utxo": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "utxo_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "confirmed": true, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5174,7 +5174,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5213,16 +5213,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "asset_info": { "divisible": true, "asset_longname": null, @@ -5234,16 +5234,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678705, + "block_time": 1729682817, "asset_info": { "divisible": true, "asset_longname": null, @@ -5255,16 +5255,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -5276,20 +5276,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5297,16 +5297,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "event": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678670, + "block_time": 1729682791, "asset_info": { "divisible": true, "asset_longname": null, @@ -5327,7 +5327,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address of the feed + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5362,7 +5362,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -5381,9 +5381,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", + "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", "block_index": 137, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5391,7 +5391,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678471, + "block_time": 1729682571, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5405,7 +5405,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -5424,14 +5424,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "60aca46cf7bda0f914148f4cd3646391dbc2729f7af0733efd7ebbcf9f63e365", + "tx_hash": "5a5ef08dcd1fc68de370600948dc5d22c1c77554d6449db42678a1cdf3a598d4", "block_index": 112, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729678367, + "block_time": 1729682467, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5446,7 +5446,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -5465,10 +5465,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5476,7 +5476,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -5489,10 +5489,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5500,11 +5500,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5513,10 +5513,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5524,11 +5524,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5537,10 +5537,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "block_index": 152, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5548,11 +5548,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5561,10 +5561,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", + "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", "block_index": 149, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5572,11 +5572,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678533, + "block_time": 1729682632, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5594,7 +5594,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c` (str, required) - The address to return + + address: `bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65` (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 @@ -5613,10 +5613,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "block_index": 151, - "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", - "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", + "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5624,11 +5624,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678541, + "block_time": 1729682640, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5646,7 +5646,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 +5666,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5677,11 +5677,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5690,10 +5690,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5701,11 +5701,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5714,10 +5714,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "block_index": 152, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5725,11 +5725,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5738,10 +5738,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", + "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", "block_index": 149, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5749,11 +5749,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678533, + "block_time": 1729682632, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5771,7 +5771,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c` (str, required) - The address to return + + address: `bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65` (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` @@ -5791,10 +5791,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "block_index": 151, - "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", - "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", + "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5802,11 +5802,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678541, + "block_time": 1729682640, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5824,7 +5824,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5853,9 +5853,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5864,7 +5864,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5874,7 +5874,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -5899,7 +5899,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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` @@ -5912,9 +5912,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5923,7 +5923,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5933,7 +5933,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -5955,7 +5955,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -5975,19 +5975,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5995,7 +5995,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6010,7 +6010,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -6024,19 +6024,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6044,7 +6044,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6059,7 +6059,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -6081,7 +6081,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address to return + + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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 @@ -6101,19 +6101,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6121,7 +6121,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6136,7 +6136,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -6150,19 +6150,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6170,7 +6170,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6185,7 +6185,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -6207,7 +6207,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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` @@ -6228,19 +6228,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6248,7 +6248,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6263,7 +6263,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -6277,19 +6277,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6297,7 +6297,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6312,7 +6312,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -6334,7 +6334,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address to return + + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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` @@ -6355,19 +6355,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6375,7 +6375,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6390,7 +6390,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -6404,19 +6404,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6424,7 +6424,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6439,7 +6439,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -6461,7 +6461,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0` (str, required) - The address to return + + address: `bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe` (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 @@ -6480,16 +6480,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -6503,7 +6503,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6535,14 +6535,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -6557,20 +6557,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", + "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -6585,20 +6585,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729678579, + "block_time": 1729682689, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", + "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -6613,20 +6613,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678575, + "block_time": 1729682685, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", + "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -6641,20 +6641,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678571, + "block_time": 1729682681, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -6669,7 +6669,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6684,7 +6684,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The issuer or owner to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -6707,8 +6707,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -6716,16 +6716,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": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -6733,16 +6733,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": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -6750,16 +6750,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": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -6767,16 +6767,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": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -6784,8 +6784,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": 1729678426, - "last_issuance_block_time": 1729678442, + "first_issuance_block_time": 1729682526, + "last_issuance_block_time": 1729682542, "supply_normalized": "0.00000000" } ], @@ -6799,7 +6799,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The issuer to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -6822,8 +6822,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -6831,16 +6831,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": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -6848,16 +6848,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": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -6865,16 +6865,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": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -6882,16 +6882,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": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -6899,8 +6899,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": 1729678426, - "last_issuance_block_time": 1729678442, + "first_issuance_block_time": 1729682526, + "last_issuance_block_time": 1729682542, "supply_normalized": "0.00000000" } ], @@ -6914,7 +6914,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The owner to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -6937,8 +6937,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -6946,16 +6946,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": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -6963,16 +6963,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": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -6980,16 +6980,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": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -6997,16 +6997,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": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -7014,8 +7014,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": 1729678426, - "last_issuance_block_time": 1729678442, + "first_issuance_block_time": 1729682526, + "last_issuance_block_time": 1729682542, "supply_normalized": "0.00000000" } ], @@ -7029,7 +7029,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -7048,17 +7048,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", - "block_time": 1729678714, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_time": 1729682826, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", + "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7094,23 +7094,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", - "block_time": 1729678710, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_time": 1729682822, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "supported": true, - "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", + "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "status": "valid" } }, @@ -7118,17 +7118,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 191, - "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", - "block_time": 1729678705, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", + "block_time": 1729682817, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", + "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7164,17 +7164,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", - "block_time": 1729678701, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", + "block_time": 1729682813, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", + "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7182,14 +7182,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7197,7 +7197,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7216,17 +7216,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 185, - "block_hash": "37a13a425aabe49af51c4e383cdffd32f73375c4418ae04300e59292b49f5ae7", - "block_time": 1729678670, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "59b635339e6a5719ed96d6699c10b4f8b84a5b7d229188ab5c9033da064ad5fb", + "block_time": 1729682791, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9:1", + "utxos_info": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7271,7 +7271,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -7290,20 +7290,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7328,7 +7328,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7357,9 +7357,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7374,7 +7374,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7400,9 +7400,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7417,7 +7417,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7443,9 +7443,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7460,7 +7460,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7486,9 +7486,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7503,7 +7503,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7538,7 +7538,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The source of the fairminter to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7563,10 +7563,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, "block_index": 155, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7591,7 +7591,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7600,10 +7600,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7628,7 +7628,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729678464, + "block_time": 1729682563, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7640,10 +7640,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7668,7 +7668,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729678447, + "block_time": 1729682547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7680,10 +7680,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7708,7 +7708,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729678442, + "block_time": 1729682542, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7720,10 +7720,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7748,7 +7748,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7770,7 +7770,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address of the mints to return + + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7788,22 +7788,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7812,22 +7812,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", + "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678460, + "block_time": 1729682559, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7836,22 +7836,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", + "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", "tx_index": 20, "block_index": 133, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678455, + "block_time": 1729682555, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7860,22 +7860,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", + "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", "tx_index": 19, "block_index": 132, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678451, + "block_time": 1729682551, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7884,22 +7884,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0ba98ab6cccc8df44723310013e7f8cea8a92cf7f847ff523622f510f450ab0d", + "tx_hash": "ea72a6c654c3094836a7b3a5ec670df4dd26ed8e5efcc563f823d58388c518b9", "tx_index": 15, "block_index": 127, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678430, + "block_time": 1729682530, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7908,22 +7908,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -7942,7 +7942,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address of the mints to return + + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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` @@ -7961,22 +7961,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -8018,8 +8018,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will make the bet - + feed_address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will make the bet + + feed_address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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) @@ -8087,7 +8087,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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) @@ -8143,7 +8143,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8155,7 +8155,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101bc158e372acaf77cc139bd5a044fe5c3f9431e90d584b48cba828c9eb87468ec00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a2992aea7460499574a1075a331fb27e9a41f875b491170470ff9b8d6fa676c055374d262dd24ff9f64bb9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "020000000001010b783b703c9ae111db37e3edbacea1d6b681e5c72388b073377fd5474ce87a9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a2995f69e555a43c5e63074253045d3088622743235cc11cd756fdc0d3fe0605d5b15a72e706f1d4c78639bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8177,8 +8177,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending the payment - + order_match_id: `6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad` (str, required) - The ID of the order match to pay for + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending the payment + + order_match_id: `0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69` (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) @@ -8230,23 +8230,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" }, "name": "btcpay", - "data": "434e5452505254590b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f96280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "data": "434e5452505254590b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101d2bb52cb559f93f1a4dcd9da75c60b37a55f22fe54bc7a178e72bdd3030d7dda00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03b80b000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da00000000000000004b6a4991bdf4447e8ae99bc910117cd4e0c1f4c9ecd735aa0359e45088839790177a31f1dfa2ad238196453c59a32f1b544eb99e8bd7aa70a8c913456e7a58be3abe4aca4e01017d7cbbd658c79f052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101a14227f1320893fa8270679d232cdc4fb916e8a8c4092256f1153095b1b03fb0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03b80b0000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee200000000000000004b6a49a246921c600588061e396e34460288412e7fe162e957fd6b07acf656bf3f2ac69c63afe659d5da29175ae150e47bfbe681b8eaa6370f615bbaefb61b8e2d93db70aa371748a2af823bc79f052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "status": "valid" } } @@ -8259,7 +8259,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address with the BTC to burn + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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` @@ -8314,7 +8314,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "quantity": 1000, "overburn": false }, @@ -8324,7 +8324,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": "02000000000101feb91f1f1577b25b907a4589a0e2735db56c82c19834454d2526b0fc042535f500000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000" + "rawtransaction": "020000000001010831406cb2940d069bef89f68b3c083d46012e7eb9d8a848af1240de26446f56000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000" } } ``` @@ -8334,8 +8334,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a` (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) @@ -8387,21 +8387,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3" + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a" }, "name": "cancel", - "data": "434e54525052545946b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "data": "434e545250525459461f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001012be1bfd3a4bc6f40d0ef7358c63a1d717ef4c2048a1ee3036be4220daa3897fb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a29204c1cac4ee322a51b1fa47e446e547ae4519ac1319f04cbe8073cded92846055cba14e3ae40d7528d9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101f6102456ad9c970ca389c03cca7adc21161ef6f1203c154c74bcdaa8fefed8d8000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a291415e8a26efe9b029b11e5a4799abc6c17d740c2c9fb0c505494944ef5ab17ff51cc4469337688c4899bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "status": "valid" } } @@ -8414,7 +8414,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -8469,7 +8469,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8488,7 +8488,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101a038918486b2f8aeb5b1a3632ada819922dd77a8b11db876b7a706c95c52828a00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000226a2007772d9f4be05ada15636d7f0473778e0c7a198f06196c43509a80f9a6f41066aabc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101daec0411a39537e60d7b66a20d5d7f62fd98c2d247d4788d18b88cd2eb4b7b9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000226a20054abb8dd95e1d4c69ec265331b9d7dcb125027a834c03c71d913be50132fadbaabc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8508,7 +8508,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: `bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l` (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) @@ -8569,7 +8569,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8593,7 +8593,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": "020000000001012f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd202000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c3809203ffffffff0200000000000000002c6a2a6f5a2426cd1d4d5a24c9525bf8de62939b34c6ed3eb2ed7f54a45d36356ccb11b7f3e39b57863bcdf06db0540a2701000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c380920302000000000000", + "rawtransaction": "020000000001011ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b80200000016001492c153ddd35e0d4aea3650d10120755c34e7990dffffffff0200000000000000002c6a2adfa9dc36f662b3ca45d207632d3d00ab19cf6af991570f5f89c1220f01a1075b0e85f923bb36e6f1271bb0540a270100000016001492c153ddd35e0d4aea3650d10120755c34e7990d02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8619,7 +8619,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -8674,14 +8674,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -8700,7 +8700,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101c4520d589d19701a90b7d9ec6fa39ea967dbdf13c629e3d27d99d0aa451caef200000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21e62fce5636aa2aaa8ab4203a29d020d7fa91ab62b52cd152a407a2826af3827ef86fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "0200000000010199d1c48a6c745e75a1b7f5b0a08e3ba15b20d8c43a08fe211563efc56c69cf1a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a213f626915e1985cc6b16d51e7be78949447b6307b760b934fcc0e257cebdffc701e6fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8721,10 +8721,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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` @@ -8785,10 +8785,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "transfer_destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "lock": false, "reset": false, @@ -8801,7 +8801,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": "02000000000101a3eeb9334177683eb3d89ecf3fda3aba9396f930b26572039d481b4fa04944e100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff032202000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da0000000000000000236a21723a052598c88d16fbb9acf530d04edda6bf62f3f53f74932ba7794df13a9e2edf85b2052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "020000000001010fd1eb92bbad2c48eb444874c6f0c4657c2ab70bb15ebc55798f0a3bc551f27d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0322020000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee20000000000000000236a21b1c4e3df44d1a16438a85c7fa94ceef59a148c206940254b3544ffcc2830e3e93185b2052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8830,9 +8830,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp,bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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` @@ -8889,16 +8889,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", 1 ], [ "MYASSETA", - "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", 2 ] ], @@ -8906,26 +8906,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d5dfbe27ae299c5fd959d4d431b265cb285f92da806d5956f8352c1ff14ab40ab558c08c35f67ef34d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002808dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104a1d1ae3c7aa89d2e9075cfed6920f7dbf37e555dd499ce0fae61b5c99b61e09300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8b1ebe38e8dd0b05847d2ed187cab08d83cc881fad02dc7ee12e46a4aca2b4cb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff65d9cde3d86f9d8995c94dbc86801fc37547394f359a5cbb22d5b894caef67dd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92dafffffffff9d347dea48f146afafe09609b995b21b27af53731de5bc2d1c1bda83cf40b9000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03e80300000000000069512102e09a32f2f9fdd1081495ff75372c52057042bb569bcb1ea850fcca565a3e32d821030462aa6de63359abd37a897b61eeed2bdb2ef6c30f726e2e85020aef808fc587210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee80300000000000069512102ef9a32f2f9fdd10814b68818c595e99a756c92cac807dcf733ed783391166d8c210396b86200bf65a19eff657031d5e458731ba2c135718123a1a74a6f83ece0e910210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53ae14f316a804000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000000000000", + "rawtransaction": "020000000001044c537dabcab96e140c3de3e610c12f7a1d9a3a4a7404b3ea0fd783b06b12a5cc000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0d169c69e6f466fca914be8e6728a659b5b957d69b1a14598c5b4c8efdb9c558000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff8713e897e6d149ef33f921baca67449dfd4c8abfe191a11dba5ba7efac761f85000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffffdc3950eeffb56f0515eb56974b98e46efec64858c8c3e3243aa4fb74ff65002000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03e803000000000000695121028a319a76b39fa86de25d059cb44038482de77b7e1ec28f7e5517a4d9c15f977921026c123153a20b731059896c39ccb2fb958331ba4e0c354374e1bb70a8b9f1234a210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210285319a76b39fa86de27e72f146a19c8d6becb6431bf1a51b13e553c0c1fe7003210342f0f9de049affe3c5618471ee8a59f8df1bf402abea78fbc3f315c4d59e0f4b210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753ae14f316a8040000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8941,7 +8941,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -8999,7 +8999,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9016,7 +9016,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9030,7 +9030,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101afb41532a5271bd113380fe2eca418d2ebefc67537ea7e4ba69fbb45c97485a000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000356a33c0a0ea1cdcdcea8771a7ed0159e53c7e87c145c1c79d80c143189350febc202196b3684fe3499d55cc50cd54fc0ae2a2c68b2f51b8052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101039f99a470cfc81bee0acf8fcf740555e0536d14fe0423107ac0039eab47e3ec000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000356a333a1d44a001f39a8c4f6cd43e00aa23db97269c6e1e3128929039b3b13ec245a2e828dcf6f24885e28017be6120538fa6b1fda651b8052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9056,8 +9056,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address that will be receiving the asset + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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 @@ -9117,8 +9117,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9134,19 +9134,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8806d5956f8352c1ff14ab40ab558c08c35f67ef34d", + "data": "434e54525052545902000000000000000100000000000003e8808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "020000000001012e2335c709f9e69e04236ccbdda9f04412633647e93e369f2d071373c261b98e00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000306a2e7f85c498b9ebdc5cbc1cf69ce660bc12eeeab2c1e7bb01dbb5773636c1b1a4a6b337b1e4b819ce115d7d33b8766476b9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101edbc6af28317e11cb33f4357af10edcceaac7007101229df0e0f5b266efc5119000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000306a2ec4c584753cfc5f54fd728bd504485ea7c0022b177d2b951c114753c59b951f21cb5a3c366eb074e0dbc5377bf28476b9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "memo": null, "quantity_normalized": "0.00001000" } @@ -9160,8 +9160,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be sending - + destination: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending + + destination: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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 @@ -9215,23 +9215,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904806d5956f8352c1ff14ab40ab558c08c35f67ef34d07ffff", + "data": "434e54525052545904808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001018d9ed5eaedf42041d3e5236e4f6c2d97b3323ed4663739d97b835ff31638751400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21c5feb8a12643829353f33e9e64237c94424868e23d4a17ad8585d50b41eaac639a6fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101fa8e0467963955db9b72c729b5e5a51e558034ecb37cf52096280320ce039a3f000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a212f203e2ff10b6c3da89c8b96c3fce9a81993643a0dbe6423f91913c2f4691379726fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "flags": 7, "memo": "ffff" } @@ -9245,8 +9245,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: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj` (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` @@ -9299,8 +9299,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "quantity": 1000 }, "name": "dispense", @@ -9309,7 +9309,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "02000000000101f6f3038958ad55e8d94b376dea10b837a5e90d12450e7636e8b602f2dd08962f020000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34dffffffff03e803000000000000160014ba169e41ef98c76eb1b6b1f4740ff07f576f45f100000000000000000c6a0a75fead466b940cccbc7be3c10827010000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34d02000000000000", + "rawtransaction": "020000000001016caf441850af621deeb22a8b97035139e3df0bc445be782578596bcf50638311020000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3bffffffff03e8030000000000001600143d3b0471e07117073921fa17a6ef90013da3ceea00000000000000000c6a0a121d896d99ff4f3d2943e3c10827010000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3b02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9326,7 +9326,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be issuing the asset + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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: `` @@ -9411,7 +9411,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9442,7 +9442,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001015c241cf3a20d3da5294a5c4d45851da4e2282dfb111062872161e922b09bc0af00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000316a2f5e5b45e8f074107450cf208569d2f9e118b82a67711097f06dc09dfb1cad01405d2f707e19b06d905b841d356af24a3bb9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "020000000001018b14f68661cd4bc2bb463285470d615b44410aabf699e8fd7be98b3f7eea34e3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000316a2fd4691e395c696ccf94398842f72b756c82ccff1116c8d5c145690c13fd42a43bb9d1b3248463f38c391d48551026123bb9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9475,7 +9475,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address that will be minting the asset + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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` @@ -9530,13 +9530,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9548,7 +9548,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": "020000000001015340508a67369995b825cb0d23e7db98642ef14f6f50d0fac6825bd44ec6544b00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000166a144d3d0169a3b24b20cf61fa28b4c3ba0e3c1ca62b69bf052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101b46d8a28486b8cb7107ab18a8442fd880bf203e7c32523a9781850823e600e7e000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000166a1410682282f59c3b0a5ca5eaa40bdd7905511d0c7c69bf052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9566,10 +9566,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: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address from which the assets are attached + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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: `8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e:0` (str, optional) - The utxo to attach the assets to + + destination: `7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9622,8 +9622,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e:0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9636,12 +9636,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c386562393631633237333133303732643966333633656539343733363633313234346630613964646362366332333034396565366639303963373335323332653a307c5843507c31303030", + "data": "434e545250525459646263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c376466323531633533623061386637393535626335656231306262373261376336356334663063363734343834346562343832636164626239326562643130663a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001065cd4d29c2be11e496a618e60f3b64709fa7fa4a1e092a170d10dd6f18bfa73bd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8c33b605f3589de4ccb1135d15e4a867e4f3b36265daf3917eed27c233433f0400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff299e07e8b5a4b237d19e04c335d588674083607bee73d829be9b8d6a409e528300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff7897f7b859ad5eefa08207d5782a38a6413cb26e50b8be7880fb3c03cae5852000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff2b50c1cae4ec7a29d8bb6a2be159f2a7550515dee4a5a3a454172bf7e0b692eb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff3605d21ae1d9467d4259bef5ba77406531dc47926f6edcc5405b0109a7e32ed100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff04e803000000000000695121030608dd0bd650bd2b990cb01688d9fe67e5781da23a6a74255a987e3824c3bee5210282229f02b495620ba68ba594e60bec3977a8a25ac3c066ba8d0eabf15e45b804210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121030608dd0bd650bd2b995ae546cb9eff21e17414a97c3a263706d93d367b9eba8e2102d425c304f2812404a68ab7c2bd51f66072e8af5494d420a08c5bf0ab5f47eed4210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121032c08dd0bd650bd2b995ae1479f97ff6a8b537db37e3c256263e0090148a88c402103e714f130c6e714659feed3a1df67955241d89b6df1b116c6b56bc9c86874db7e210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aec36d22fc06000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001061601d308588e431d26b890108b94617fa7431e9c9c2f6434a34ce25a92d330b3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff81f9e96f1c676e35119d42d802dc15052ebef7baacac20e343f655506da272d0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffe09946c6ca88fadd9d9368e49d5614fbc5cc89b362fb6aad25fd3f05a036340d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffff4f007867d945d244894a2d8d50cb81542fa9b80e199672f6c5836b3f03e661c000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff060805e469980cd6df3c145d10de189d6dbd57644ebd31944017a3fdc766b99b000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffaafed3a305e0ac1925ca22615f218910bf78f0bef1805435d02b2acd25a44561000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff04e8030000000000006951210324fb63d58d0fcffccf23e00777204855520a052c9e106c0c16297b1b5f0bde692103bc851ac7b809d438c75205ef32b87dd4a5170dc6457ff7a36a52fadb2baea2e8210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210324fb63d58d0fcffccf72b10635354142565b416e9b16201d112d7c0a575ad8b92102eed31492ec53813d924049ab31fb3188eb1315994434f8be3954fed02cfaa301210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee803000000000000695121030efb63d58d0fcffccf23b354636e495839212427c8452548731c4c68356dea9f21038fe477a4d930b55ba2237f9c05cf09bcdf7677ad7c069bdf5d369ce91e9fc13f210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aec36d22fc060000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9658,8 +9658,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: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to detach the assets to + + utxo: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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 @@ -9713,8 +9713,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9727,12 +9727,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964303335356530663463386366633862346436366336356532376464663739656630363666313132303630363762386263646335623836363166396333323366643a307c6263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c5843507c31303030", + "data": "434e54525052545964313532373434343938643135623934303430613235343432316664653333366631353631386338386163383464663433613238363338376566373466623432323a307c6263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "02000000000103131af70028bd62be68b4696b2820a49affe13885c2899f5b61f781a7ead8439c01000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff2f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd200000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffffa85601cb5725c44a74ee302135a63986e670f990bee5b7cdf6996d120da8fad901000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff04e8030000000000006951210244ac0de221d73fb9d88c257c117bd7a1a930f12f447ee37050db73b4364989fd21026127286fdc7033046ef6b3a5147969514abdb389be922f0b686ea38be6a9cee1210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee8030000000000006951210344ac0de221d73fb9d8d0237915288bf2fc36a1714322b034508c65f6315b896c21033c72772dde75220a2fe4ecf9497d6a5615bdf1cdf8ca210c2639f983fcf79a73210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee803000000000000695121036eac0de221d73fb9d8982c78163fc2ed9747c26b1628b07832ef1782002abf9c210354421a58b81455335793d595224f0f607b8f83bf8ea41869500cc0ef859cac2b210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853ae11780b2701000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194202000002000002000000000000", + "rawtransaction": "020000000001037b6abe53a2b2718fa8b0896ec766d6ddb0d84f9ed336ffb3ba2868c071e05bb6010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff1ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b8000000001600144f05c52b2783836407de9a1525fede28bf247496fffffffffcdf62dbc78037c7ca6c6af3aba177b0f8f8eadb6349b01146f19dc9edbfa372010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff04e803000000000000695121035649a707698833ea7cd9846d82e9677525ca137832181458190d8f2fd10237742102ce7d2ee468da0c1fdf16b258c9b26ac1d4c75d2f032da01bb329d9109a37a330210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121035649a707698833ea7c8e8d6fd5b8647577911f2e3117461d4f5ec96b81413108210392386bb26bc71d49d917a7039ab06898da9c04770176f10eaf6edd06dc67ef51210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121027c49a707698833ea7cdccf3389a73f3d49b07b60321d46512d3dbb1fb03002f72103fa491cd50ebe692cec20d469fc845bf9b7ff654e6015947fd51dea71a80f95c3210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253ae11780b27010000001600144f05c52b2783836407de9a1525fede28bf24749602000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9758,6 +9758,16 @@ Composes a transaction to move assets from UTXO to another UTXO. + show_unconfirmed (bool, optional) - Include results from Mempool. + Default: `false` +### Get Attach Estimate Xcp Fee [GET /v2/compose/attach/estimatexcpfees{?verbose}{&show_unconfirmed}] + +Returns the estimated fee for attaching assets to a UTXO. + ++ Parameters + + 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` + ## Group Assets ### Get Valid Assets [GET /v2/assets{?named}{&cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] @@ -9787,8 +9797,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -9796,16 +9806,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "owner": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "owner": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "divisible": true, "locked": false, "supply": 100000000000, @@ -9813,16 +9823,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729678568, - "last_issuance_block_time": 1729678568, + "first_issuance_block_time": 1729682676, + "last_issuance_block_time": 1729682676, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -9830,16 +9840,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -9847,16 +9857,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -9864,8 +9874,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" } ], @@ -9893,8 +9903,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -9902,8 +9912,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729678408, - "last_issuance_block_time": 1729678421, + "first_issuance_block_time": 1729682508, + "last_issuance_block_time": 1729682521, "supply_normalized": "100.00000000" } } @@ -9934,7 +9944,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9942,14 +9952,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9957,7 +9967,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9975,7 +9985,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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. @@ -9987,7 +9997,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -10041,9 +10051,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10058,7 +10068,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10084,9 +10094,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10101,7 +10111,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10127,9 +10137,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10144,7 +10154,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10170,9 +10180,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10187,7 +10197,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10213,9 +10223,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10230,7 +10240,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10292,13 +10302,13 @@ Returns the orders of an asset { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10312,7 +10322,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10332,13 +10342,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10352,7 +10362,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10372,13 +10382,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "tx0_index": 49, - "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 50, - "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10392,7 +10402,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10472,20 +10482,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10493,20 +10503,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", + "event": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10514,20 +10524,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10535,20 +10545,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "event": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10560,16 +10570,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10629,12 +10639,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -10646,16 +10656,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "event": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678723, + "block_time": 1729682834, "asset_info": { "divisible": true, "asset_longname": null, @@ -10667,16 +10677,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "divisible": true, "asset_longname": null, @@ -10688,16 +10698,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "divisible": true, "asset_longname": null, @@ -10709,16 +10719,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "asset_info": { "divisible": true, "asset_longname": null, @@ -10758,20 +10768,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10828,14 +10838,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", + "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -10850,20 +10860,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -10878,20 +10888,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -10906,20 +10916,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -10934,7 +10944,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729678408, + "block_time": 1729682508, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10968,10 +10978,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10979,7 +10989,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -10992,10 +11002,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11003,7 +11013,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -11016,10 +11026,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", "block_index": 189, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -11027,7 +11037,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678697, + "block_time": 1729682809, "asset_info": { "divisible": true, "asset_longname": null, @@ -11040,10 +11050,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", + "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", "block_index": 157, - "source": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", - "destination": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", + "destination": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11051,7 +11061,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678568, + "block_time": 1729682676, "asset_info": { "divisible": true, "asset_longname": null, @@ -11064,10 +11074,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8", + "tx_hash": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc", "block_index": 156, - "source": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", - "destination": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", + "source": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", + "destination": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11075,7 +11085,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678562, + "block_time": 1729682672, "asset_info": { "divisible": true, "asset_longname": null, @@ -11126,9 +11136,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11137,7 +11147,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11147,7 +11157,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -11163,9 +11173,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", + "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", "block_index": 142, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11174,7 +11184,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11184,7 +11194,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678493, + "block_time": 1729682602, "asset_info": { "divisible": true, "asset_longname": null, @@ -11200,9 +11210,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", + "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", "block_index": 150, - "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", + "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11210,10 +11220,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11221,7 +11231,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678537, + "block_time": 1729682636, "asset_info": { "divisible": true, "asset_longname": null, @@ -11237,18 +11247,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11258,7 +11268,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -11283,7 +11293,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - The address to return + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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` @@ -11296,9 +11306,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11307,7 +11317,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11317,7 +11327,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -11367,7 +11377,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11375,7 +11385,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11384,7 +11394,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11392,7 +11402,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11401,7 +11411,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11409,7 +11419,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11418,7 +11428,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11455,27 +11465,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11490,7 +11500,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -11504,27 +11514,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", + "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", "block_index": 147, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11539,7 +11549,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678514, + "block_time": 1729682623, "asset_info": { "divisible": true, "asset_longname": null, @@ -11553,19 +11563,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11573,7 +11583,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11588,7 +11598,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -11602,19 +11612,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11622,7 +11632,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11637,7 +11647,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -11680,8 +11690,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -11689,8 +11699,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729678575, - "last_issuance_block_time": 1729678575, + "first_issuance_block_time": 1729682685, + "last_issuance_block_time": 1729682685, "supply_normalized": "0.00000000" } ], @@ -11729,10 +11739,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11757,7 +11767,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11797,22 +11807,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", + "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", "tx_index": 13, "block_index": 125, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11821,22 +11831,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "tx_index": 12, "block_index": 124, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11845,22 +11855,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11879,7 +11889,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed` (str, required) - The address of the mints to return + + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (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` @@ -11898,22 +11908,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -11962,9 +11972,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11979,7 +11989,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12005,9 +12015,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12022,7 +12032,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12048,9 +12058,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12065,7 +12075,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12091,9 +12101,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "block_index": 188, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12108,7 +12118,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12134,9 +12144,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12151,7 +12161,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12186,7 +12196,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3` (str, required) - The hash of the transaction that created the order + + order_hash: `1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a` (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. @@ -12198,9 +12208,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12215,7 +12225,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12247,7 +12257,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9` (str, required) - The hash of the transaction that created the order + + order_hash: `0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc` (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 @@ -12274,13 +12284,13 @@ Returns the order matches of an order { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12294,7 +12304,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12314,13 +12324,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12334,7 +12344,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12364,7 +12374,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9` (str, required) - The hash of the transaction that created the order + + order_hash: `0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc` (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 @@ -12383,15 +12393,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "btc_amount": 2000, - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "status": "valid", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "btc_amount_normalized": "0.00002000" } ], @@ -12435,9 +12445,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12455,7 +12465,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729678688, + "block_time": 1729682800, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12481,9 +12491,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "block_index": 188, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12501,7 +12511,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12527,9 +12537,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12547,7 +12557,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12573,9 +12583,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12593,7 +12603,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12619,9 +12629,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12639,7 +12649,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12702,13 +12712,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12725,7 +12735,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12745,13 +12755,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12768,7 +12778,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12788,13 +12798,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "tx0_index": 49, - "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 50, - "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12811,7 +12821,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678609, + "block_time": 1729682719, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12869,13 +12879,13 @@ Returns all the order matches { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12889,7 +12899,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12909,13 +12919,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12929,7 +12939,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12949,13 +12959,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "tx0_index": 49, - "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 50, - "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12969,7 +12979,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13137,66 +13147,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", + "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", "block_index": 121, - "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", + "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729678403, + "block_time": 1729682503, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2b92c5ba4bff308186e1596603e2fb377e8b02051a85215b4b61c17b3d1a6d90", + "tx_hash": "84dc4175af426ef98224178760c28214eaa81cf980a71eb9957bc3756bcaa276", "block_index": 120, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729678399, + "block_time": 1729682500, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "cc87e0fae13e23537d7b3cad7e7cd469f265c9a066362727f6ea8698b7b239f6", + "tx_hash": "a3ea78c95e6a751e8ac77f29ee3cd8a91dc650c83a413d66db6fd0d78c72a98b", "block_index": 119, - "source": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038", + "source": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729678395, + "block_time": 1729682496, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "4e1b0094704b6e6e79f2927b09491dc1f2d5109a4e94f701d4167a0b6f6b53be", + "tx_hash": "8f19504cf556b70ede320708386f56c1830989b1dc0bf3aad9ad12230d9b6072", "block_index": 118, - "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729678391, + "block_time": 1729682492, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "399533b3fb6b2ff6fca2246201a37f73f7d45e7df2445f476364fce0fd2f3fef", + "tx_hash": "312cc530ddb1eca6dc9d98fea85e8a41dc49b634ca4d699da68651c065bf88f6", "block_index": 117, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729678388, + "block_time": 1729682487, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13241,9 +13251,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13252,7 +13262,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13262,7 +13272,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -13278,9 +13288,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", + "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", "block_index": 142, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13289,7 +13299,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13299,7 +13309,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678493, + "block_time": 1729682602, "asset_info": { "divisible": true, "asset_longname": null, @@ -13315,9 +13325,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", + "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", "block_index": 150, - "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", + "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13325,10 +13335,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13336,7 +13346,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678537, + "block_time": 1729682636, "asset_info": { "divisible": true, "asset_longname": null, @@ -13352,18 +13362,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13373,7 +13383,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -13398,7 +13408,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72` (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. @@ -13410,9 +13420,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13421,7 +13431,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13431,7 +13441,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -13453,7 +13463,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72` (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 @@ -13473,19 +13483,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13493,7 +13503,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13508,7 +13518,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -13522,19 +13532,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13542,7 +13552,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13557,7 +13567,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -13599,20 +13609,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -13637,7 +13647,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1` (str, required) - The hash of the dividend to return + + dividend_hash: `80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc` (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. @@ -13649,20 +13659,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -13684,7 +13694,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc` (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 @@ -13707,12 +13717,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "tx_index": 41, - "utxo": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "utxo": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "divisible": true, "asset_longname": null, @@ -13724,16 +13734,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "address": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "divisible": true, "asset_longname": null, @@ -13779,27 +13789,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 561, @@ -13808,14 +13818,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -13826,9 +13836,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 560, @@ -13837,9 +13847,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -13849,24 +13859,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -13876,9 +13886,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 558, @@ -13906,15 +13916,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } } ``` @@ -13992,16 +14002,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -14011,9 +14021,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 557, @@ -14023,12 +14033,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -14038,9 +14048,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 554, @@ -14050,39 +14060,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "divisible": true, "asset_longname": null, @@ -14092,36 +14102,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "block_time": 1729678718 + "block_time": 1729682830 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "block_time": 1729678718 + "block_time": 1729682830 } ], "next_cursor": 536, @@ -14177,27 +14187,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14212,7 +14222,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -14226,27 +14236,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", + "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", "block_index": 147, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14261,7 +14271,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678514, + "block_time": 1729682623, "asset_info": { "divisible": true, "asset_longname": null, @@ -14275,19 +14285,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14295,7 +14305,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14310,7 +14320,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -14324,19 +14334,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14344,7 +14354,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14359,7 +14369,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -14401,10 +14411,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14412,7 +14422,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -14425,10 +14435,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14436,11 +14446,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -14449,10 +14459,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14460,7 +14470,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -14473,10 +14483,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14484,11 +14494,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -14497,10 +14507,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14508,11 +14518,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -14563,14 +14573,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -14585,20 +14595,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", + "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -14613,20 +14623,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729678579, + "block_time": 1729682689, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", + "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -14641,20 +14651,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678575, + "block_time": 1729682685, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", + "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -14669,20 +14679,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678571, + "block_time": 1729682681, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", + "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "transfer": false, "callable": false, "call_date": 0, @@ -14697,7 +14707,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678568, + "block_time": 1729682676, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14712,7 +14722,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28` (str, required) - The hash of the transaction to return + + tx_hash: `e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6` (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. @@ -14724,14 +14734,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -14746,7 +14756,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14778,16 +14788,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -14801,7 +14811,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468` (str, required) - The hash of the transaction to return + + tx_hash: `b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54` (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. @@ -14814,16 +14824,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -14857,9 +14867,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "block_index": 138, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14867,14 +14877,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678476, + "block_time": 1729682576, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", + "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", "block_index": 137, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14882,7 +14892,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678471, + "block_time": 1729682571, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14896,7 +14906,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535` (str, required) - The hash of the transaction to return + + tx_hash: `6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441` (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. @@ -14908,9 +14918,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "block_index": 138, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14918,7 +14928,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678476, + "block_time": 1729682576, "fee_fraction_int_normalized": "0.00000000" } } @@ -14955,10 +14965,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, "block_index": 155, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14983,7 +14993,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -14992,10 +15002,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15020,7 +15030,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729678464, + "block_time": 1729682563, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15032,10 +15042,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15060,7 +15070,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729678447, + "block_time": 1729682547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15072,10 +15082,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15100,7 +15110,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729678442, + "block_time": 1729682542, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15112,10 +15122,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15140,7 +15150,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15209,22 +15219,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -15233,22 +15243,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", + "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678460, + "block_time": 1729682559, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -15257,22 +15267,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", + "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", "tx_index": 20, "block_index": 133, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678455, + "block_time": 1729682555, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -15281,22 +15291,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", + "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", "tx_index": 19, "block_index": 132, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678451, + "block_time": 1729682551, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -15305,22 +15315,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "696c4abfb0832fbf79528b17657b0c9f289c40aa1a503c32dee9760562df53a4", + "tx_hash": "ba53cd3c00d1019d1b50204c486102b904b364bf02919d25a42979da7df404bb", "tx_index": 17, "block_index": 129, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678438, + "block_time": 1729682538, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -15339,7 +15349,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2` (str, required) - The hash of the fairmint to return + + tx_hash: `24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f` (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. @@ -15350,22 +15360,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -15383,7 +15393,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn,bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038` (str, required) - The addresses to search for + + addresses: `bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l,bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt` (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. @@ -15402,8 +15412,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", - "address": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn" + "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", + "address": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l" }, { "vout": 2, @@ -15411,8 +15421,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", - "address": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038" + "txid": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", + "address": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt" } ], "next_cursor": null, @@ -15425,7 +15435,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0` (str, required) - The address to search for + + address: `bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe` (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 @@ -15441,28 +15451,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832" + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139" }, { - "tx_hash": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a" + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54" }, { - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468" + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" }, { - "tx_hash": "e60162f6e8017525f64b045ef6ff92d26e407e45f18b6a639cca67e7709cf498" + "tx_hash": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85" }, { - "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" + "tx_hash": "9f412c2a0eb172e04aeb2cecbbe34d0253bb97d4ee2a89ef5b3ebeda5bbd82b9" }, { - "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4" + "tx_hash": "ee4098f053d5cc0b7cb0356bd498c983b4bdc9bf6239a734af5d0ea14d728cd1" }, { - "tx_hash": "f36d45bcc314f9964b7edc112f5a3647777b7396316cc1b2bacb9faccf6b4ab5" + "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1" }, { - "tx_hash": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc" + "tx_hash": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed" } ], "next_cursor": null, @@ -15475,7 +15485,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg` (str, required) - The address to search for. + + address: `bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5` (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. @@ -15488,8 +15498,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 6, - "tx_hash": "f0206715d5e808c47174ba1de958c4299fa90963cc49f3f708096968ddc8e9a9" + "block_index": 4, + "tx_hash": "b5d6deaa91e93fa3e4bb821a406408c40560ee36370b59b2a1fc2ed8b03b9197" } } ``` @@ -15499,7 +15509,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn` (str, required) - The address to search for + + address: `bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l` (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 @@ -15520,7 +15530,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f" + "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d" } ], "next_cursor": null, @@ -15533,7 +15543,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp` (str, required) - Address to get pubkey for. + + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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. @@ -15545,7 +15555,7 @@ Get pubkey for an address. ``` { - "result": "0254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e" + "result": "0260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea4452727" } ``` @@ -15554,7 +15564,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd` (str, required) - The transaction hash + + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (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. @@ -15566,7 +15576,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001017d6b9b0f9e939c920785e1be72ff459b709cc934eb4e20d214666e4a03003a370100000000ffffffff03e803000000000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194200000000000000000c6a0a95c6de5e62c4fa610cd8dced082701000000160014739d9c26e6ee51a22ade8e3745236c326b19a8d10247304402205fd85e2f2617f2cdcebf90bc31961766a27a9f50c3a4e3474cd64692f4fbb232022040b17ff6b1519b5449f01ae3362af4bd12ba6addab6e0cffdcb51abf938957ba01210378cff7b4313e8c6382234edac20e0c4b25886ca678fd5cbd9e487627f0f9b2df00000000" + "result": "0200000000010180192c8679dee5a88c6c1e5020a32ddfe3b5c790d01eaf884de43b4fc4a94e010100000000ffffffff03e8030000000000001600144f05c52b2783836407de9a1525fede28bf24749600000000000000000c6a0ae4629855183ecd800ac4dced0827010000001600141c271ea9891c8626e5d0b35a9c8868f7fa8ab976024730440220636b9ba1f51f071cd83e22caba118437be32e31f8d75416858820425802a169802203a3f999c266047dd6a1c2f1a0f22ded832143cebe17688f590da920eb1779560012103b178c6a6f98921e6e1470bbc2f8a1abd6fff27b71a15a5fc81c9d68ce1fa3e4e00000000" } ``` @@ -15661,27 +15671,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63 }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "quantity": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, "asset_info": { "divisible": true, @@ -15692,22 +15702,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -15717,22 +15727,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 196, - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -15742,30 +15752,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729678736.7024257, + "block_time": 1729682848.4038758, "btc_amount": 0, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "destination": "", "fee": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, - "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", + "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -15779,7 +15789,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, @@ -15810,19 +15820,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -15832,7 +15842,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, @@ -15845,7 +15855,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f` (str, required) - The hash of the transaction to return + + tx_hash: `eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9` (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 @@ -15865,27 +15875,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63 }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "quantity": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, "asset_info": { "divisible": true, @@ -15896,22 +15906,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -15921,22 +15931,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 196, - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -15946,30 +15956,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729678736.7024257, + "block_time": 1729682848.4038758, "btc_amount": 0, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "destination": "", "fee": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, - "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", + "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -15983,7 +15993,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 7842f7eb5e..93cad47319 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -6,6 +6,7 @@ config, deserialize, exceptions, + gas, gettxinfo, message_type, messages, @@ -13,6 +14,7 @@ transaction, util, ) +from counterpartycore.lib.messages.utxo import ID as UTXO_ID D = decimal.Decimal @@ -641,6 +643,13 @@ def compose_attach( ) +def get_attach_estimate_xcp_fee(db): + """ + Returns the estimated fee for attaching assets to a UTXO. + """ + return gas.get_transaction_fee(db, UTXO_ID, util.CURRENT_BLOCK_INDEX) + + def compose_detach( db, utxo: str, diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index a8261d4554..a230afb9e8 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -96,6 +96,7 @@ def get_routes(): "/v2/addresses/
/compose/attach": compose.compose_attach, "/v2/utxos//compose/detach": compose.compose_detach, "/v2/utxos//compose/movetoutxo": compose.compose_movetoutxo, + "/v2/compose/attach/estimatexcpfees": compose.get_attach_estimate_xcp_fee, ### /assets ### "/v2/assets": queries.get_valid_assets, "/v2/assets/": queries.get_asset, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 5f0d5a1971..0e145dd4a9 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14378,6 +14378,26 @@ } ] }, + "/v2/compose/attach/estimatexcpfees": { + "function": "get_attach_estimate_xcp_fee", + "description": "Returns the estimated fee for attaching assets to a UTXO.", + "args": [ + { + "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/assets": { "function": "get_valid_assets", "description": "Returns the valid assets", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 1ad8d83300..fc18fc8d15 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": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", "difficulty": 545259519, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", - "block_time": 1729678723, - "previous_block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", + "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_time": 1729682834, + "previous_block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", "difficulty": 545259519, - "ledger_hash": "0728fdaf217c1411e9f56f3419b4f416747787fc2e86f89daa50d5af665493f1", - "txlist_hash": "6572814c5fe9125c42aa6cc779395eb58bd4d41c1cc7eb81747f0ac3f926faf8", - "messages_hash": "f35d7ce946e7c5dfa6f6dfa9a786fbbc324d87db48f8a2449c91a8fceb03333d", + "ledger_hash": "43e8f0a04c8a827e1a7e252f08793df6fcd648b14cbd6848c1222d700483f013", + "txlist_hash": "dc1a0a29cb30593fa918c114b56f5d538e516f853dd43ac5a492ace4820b5203", + "messages_hash": "f4bec68c1c55f8a9f347cd88b511e669af5220d46247f11c7b4f7ed360c42e94", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "4efe12800380831551bbf92f6ac44b67431a04b22d2e4e49f75770d5bbbd7b27", - "block_time": 1729678718, - "previous_block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", + "block_time": 1729682830, + "previous_block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", "difficulty": 545259519, - "ledger_hash": "15098994debc66645d87036ccdc04dff1d8a3e5048cdff460d706ca30786d3e2", - "txlist_hash": "d087cfb215356510fac7478fcdd9b4ab4db014d2e5203f6ca55a2fa9697234fd", - "messages_hash": "963ec904da3f72f664e2b4423a4115b8627779bb149ce30e2e405711a90c4c23", + "ledger_hash": "4b133b746cd856aebcce555e50aaba2f6d1d9be21da74ac968e8460c0d20d80d", + "txlist_hash": "0b979d6cc00b2cdf530ba20965941bbbe8a8b8a2a29bed285e71dc0ae7ef4d46", + "messages_hash": "d710116f570777e25f57698522a7912ad2b60d407964af35d450ca621c73df30", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", - "block_time": 1729678714, - "previous_block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_time": 1729682826, + "previous_block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", "difficulty": 545259519, - "ledger_hash": "09f10cc67e15d319daf6cf589285749418a57620dcb6771b2b320e9284927e2a", - "txlist_hash": "a230bad99dc8551fae755e954f0d7b8e09e78e2672bdea23bcb57c6b420fbdde", - "messages_hash": "564b85500289945fdf7375ae5ed38b9c262d5b490de5487065be0deccd7902a3", + "ledger_hash": "0ba322c20d9896dd65ac2dcd9ea1c444a35c3230f6a1e23c2e39e4f0ac116546", + "txlist_hash": "502b59090ef1f49257b49b9c006f3238e7787ba360ce07ade9cc41403dc6d31f", + "messages_hash": "f054c2e82c5cff4288ba911077591f38c37ce24ecbc7e1d7ee5c361d2c3c03a5", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", - "block_time": 1729678710, - "previous_block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", + "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_time": 1729682822, + "previous_block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", "difficulty": 545259519, - "ledger_hash": "ce03a8bb04d981ec6d0dfcdfcfc590c97a12e17cf39f57ce7ece44447d0f30ba", - "txlist_hash": "59935866d0083a9a32180b40bafb4e44f06627556a1c6106b71855f4dee5af6e", - "messages_hash": "bb2b9603965517fa8be7af0413e406828e177c12598220cf53ed3306f8223723", + "ledger_hash": "5403c4099c4a05514d697a5a8fd014092cac635c4227043d0728c58e298b9cf5", + "txlist_hash": "7725cc03afd6655ea1149cb6f1a47685ac0cb99d933f939cbc84319469152d32", + "messages_hash": "832cf6d8d53a118d96ef968ba60a968977dd8dc4a6d5b4ba44759b36fab99074", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", "difficulty": 545259519, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", "difficulty": 545259519, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd" + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "object_id": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "block_index": 184, "confirmed": true, - "block_time": 1729678609 + "block_time": 1729682719 }, { "type": "order", - "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, "confirmed": true, - "block_time": 1729678609 + "block_time": 1729682719 }, { "type": "order_match", - "object_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "block_index": 184, "confirmed": true, - "block_time": 1729678609 + "block_time": 1729682719 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "status": "valid", "confirmed": true, - "block_time": 1729678710 + "block_time": 1729682822 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "block_index": 195, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729678723, + "block_time": 1729682834, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "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": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -683,10 +683,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, "block_index": 155, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -711,7 +711,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -726,22 +726,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -757,17 +757,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -780,17 +780,17 @@ }, { "tx_index": 61, - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "block_index": 195, - "block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d", - "block_time": 1729678723, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_time": 1729682834, + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79:1", + "utxos_info": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -830,7 +830,7 @@ { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "013900", + "script_sig": "013300", "sequence": 4294967295, "coinbase": true } @@ -838,7 +838,7 @@ "vout": [ { "value": 5000000000, - "script_pub_key": "0014d5dfbe27ae299c5fd959d4d431b265cb285f92da" + "script_pub_key": "00148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2" }, { "value": 0, @@ -849,25 +849,25 @@ "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e", - "tx_id": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e" + "tx_hash": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f", + "tx_id": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f" } } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5bc03f229c6ccefcf29003757c8025d21e5d86112a624da855ec77f9e3f27e64", + "hash": "291f37f0d68ee13192bc945fa63e0346b75cfe0f8b03d7813b01be3cdccdf9df", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -877,20 +877,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e43458907eb92d54733b9b266605ca86b0d67d5fe32271ee78f78ed7757e9b327dbdaea94547ce86ed5582a2ab79b" + "script_pub_key": "6a2e7c88a2da47e81d18491abe8640475e2c44399db4b3ab4c98d5889ae2ce7ea6c9cfc89bc544182c369a8e0908fea0" }, { "value": 4999955000, - "script_pub_key": "0014ba169e41ef98c76eb1b6b1f4740ff07f576f45f1" + "script_pub_key": "00143d3b0471e07117073921fa17a6ef90013da3ceea" } ], "vtxinwit": [ - "304402207b2c0b966059a47e6a2dfcebe1ed067326f6978612b540b76744a1195fe547410220253f7dc140443139a42df054e688ea5bdbef7ff953c4f57294d37d2bb830760e01", - "03147bff7b2e3b1267a4dfbbbdc8c96cc069c34d6583fd5e6ec2dd84d81dceb2ff" + "30440220610233430eea2dfe24bcb47a9bbf6bfd7d81e79936110c05b3888b785343fe9e02206f12f9219be34d7da8d45cebf199b1edde1e0fd727893ec160ad889b5ba74dea01", + "02c79d13cefda6ec9da4b9064fab4131c35057629a8d92b01e560b44713c7f2abd" ], "lock_time": 0, - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", - "tx_id": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f" + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_id": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -898,7 +898,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -925,17 +925,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -950,17 +950,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", - "block_time": 1729678732, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_time": 1729682844, + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -979,12 +979,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 561, @@ -993,14 +993,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1011,9 +1011,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 560, @@ -1022,9 +1022,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -1034,24 +1034,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1061,9 +1061,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 558, @@ -1071,14 +1071,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "msg_index": 1, "quantity": 1500000000, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "status": "valid", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1088,9 +1088,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 557, @@ -1103,12 +1103,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 561, @@ -1117,14 +1117,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1135,9 +1135,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 560, @@ -1146,9 +1146,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -1158,24 +1158,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1185,9 +1185,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 558, @@ -1195,14 +1195,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "msg_index": 1, "quantity": 1500000000, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "status": "valid", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1212,9 +1212,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 557, @@ -1224,10 +1224,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1235,7 +1235,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,10 +1248,10 @@ }, { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1259,11 +1259,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1279,27 +1279,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1314,7 +1314,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,16 +1335,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1354,9 +1354,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 557, @@ -1366,12 +1366,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1381,9 +1381,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 554, @@ -1393,24 +1393,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": null, @@ -1422,16 +1422,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1441,9 +1441,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 557, @@ -1453,12 +1453,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -1468,9 +1468,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 554, @@ -1480,24 +1480,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": null, @@ -1510,7 +1510,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1520,7 +1520,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1531,7 +1531,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1541,7 +1541,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1552,7 +1552,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1562,7 +1562,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1573,7 +1573,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1583,7 +1583,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1594,7 +1594,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1604,7 +1604,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1618,17 +1618,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", - "block_time": 1729678714, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_time": 1729682826, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", + "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1664,23 +1664,23 @@ }, { "tx_index": 58, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", - "block_time": 1729678710, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_time": 1729682822, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "supported": true, - "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", + "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "status": "valid" } }, @@ -1688,17 +1688,17 @@ }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 191, - "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", - "block_time": 1729678705, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", + "block_time": 1729682817, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", + "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1734,17 +1734,17 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", - "block_time": 1729678701, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", + "block_time": 1729682813, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", + "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1752,14 +1752,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -1767,7 +1767,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1786,25 +1786,25 @@ }, { "tx_index": 53, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_hash": "2170ee5e48491e98a338e25f7a4770fd917dea480c2e47ffed408c5139ada59c", - "block_time": 1729678688, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "772ab4c2ade86d700d4d2c7dc40911ae529a206307c0e20d003b8812813261c0", + "block_time": 1729682800, + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "btc_amount": 2000, "fee": 10000, - "data": "0b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f970b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "data": "0b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "supported": true, - "utxos_info": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6:0", + "utxos_info": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "status": "valid" } }, @@ -1833,11 +1833,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "open", - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1861,24 +1861,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "block_index": 193, - "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729678714, + "block_time": 1729682826, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,25 +1888,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", "block_index": 193, - "block_time": 1729678714, + "block_time": 1729682826, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, - "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", + "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1938,40 +1938,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "tx_index": 58, - "block_time": 1729678710 + "block_time": 1729682822 }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729678710, + "block_time": 1729682822, "asset_info": { "divisible": true, "asset_longname": null, @@ -1981,9 +1981,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 } ], "next_cursor": 520, @@ -1992,17 +1992,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "quantity": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, "asset_info": { "divisible": true, @@ -2013,22 +2013,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -2038,22 +2038,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 196, - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -2063,30 +2063,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729678736.7024257, + "block_time": 1729682848.4038758, "btc_amount": 0, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "destination": "", "fee": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, - "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", + "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -2100,7 +2100,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, @@ -2109,7 +2109,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2117,14 +2117,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2132,14 +2132,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2154,7 +2154,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2162,7 +2162,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2175,7 +2175,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2197,16 +2197,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "asset_info": { "divisible": true, "asset_longname": null, @@ -2218,16 +2218,16 @@ }, { "block_index": 184, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "event": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "asset_info": { "divisible": true, "asset_longname": null, @@ -2239,20 +2239,20 @@ }, { "block_index": 161, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "event": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2260,20 +2260,20 @@ }, { "block_index": 158, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", + "event": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678571, + "block_time": 1729682681, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2285,16 +2285,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "event": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "tx_index": 39, - "utxo": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", - "utxo_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "utxo": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "utxo_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "confirmed": true, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2308,16 +2308,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,16 +2329,16 @@ }, { "block_index": 191, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678705, + "block_time": 1729682817, "asset_info": { "divisible": true, "asset_longname": null, @@ -2350,16 +2350,16 @@ }, { "block_index": 190, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -2371,20 +2371,20 @@ }, { "block_index": 190, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2392,16 +2392,16 @@ }, { "block_index": 185, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "event": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678670, + "block_time": 1729682791, "asset_info": { "divisible": true, "asset_longname": null, @@ -2424,9 +2424,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", + "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", "block_index": 137, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2434,7 +2434,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678471, + "block_time": 1729682571, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2445,14 +2445,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "60aca46cf7bda0f914148f4cd3646391dbc2729f7af0733efd7ebbcf9f63e365", + "tx_hash": "5a5ef08dcd1fc68de370600948dc5d22c1c77554d6449db42678a1cdf3a598d4", "block_index": 112, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729678367, + "block_time": 1729682467, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2464,10 +2464,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2475,7 +2475,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -2488,10 +2488,10 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2499,11 +2499,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2512,10 +2512,10 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2523,11 +2523,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2536,10 +2536,10 @@ }, { "tx_index": 39, - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "block_index": 152, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2547,11 +2547,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2560,10 +2560,10 @@ }, { "tx_index": 36, - "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", + "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", "block_index": 149, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2571,11 +2571,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678533, + "block_time": 1729682632, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2590,10 +2590,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "block_index": 151, - "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", - "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", + "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2601,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678541, + "block_time": 1729682640, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2620,10 +2620,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2631,11 +2631,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2644,10 +2644,10 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2655,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2668,10 +2668,10 @@ }, { "tx_index": 39, - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "block_index": 152, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2679,11 +2679,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2692,10 +2692,10 @@ }, { "tx_index": 36, - "tx_hash": "a6929e42b8969256454be7159d77d6308abfb8e8ad94abf7ff110fd8e5e52a38", + "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", "block_index": 149, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc:1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2703,11 +2703,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678533, + "block_time": 1729682632, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2722,10 +2722,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "block_index": 151, - "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", - "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", + "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2733,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678541, + "block_time": 1729682640, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -2752,9 +2752,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2763,7 +2763,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2773,7 +2773,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -2794,9 +2794,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2805,7 +2805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2815,7 +2815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -2835,19 +2835,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2855,7 +2855,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2870,7 +2870,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -2884,19 +2884,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2904,7 +2904,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2919,7 +2919,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -2939,19 +2939,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2959,7 +2959,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2974,7 +2974,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -2988,19 +2988,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3008,7 +3008,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3023,7 +3023,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -3043,19 +3043,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3063,7 +3063,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3078,7 +3078,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -3092,19 +3092,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3112,7 +3112,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3127,7 +3127,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -3147,19 +3147,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3167,7 +3167,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3182,7 +3182,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -3196,19 +3196,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3216,7 +3216,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3231,7 +3231,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -3250,16 +3250,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -3270,14 +3270,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -3292,20 +3292,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", + "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -3320,20 +3320,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729678579, + "block_time": 1729682689, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", + "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -3348,20 +3348,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678575, + "block_time": 1729682685, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", + "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -3376,20 +3376,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678571, + "block_time": 1729682681, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -3404,7 +3404,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3418,8 +3418,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -3427,16 +3427,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -3444,16 +3444,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -3461,16 +3461,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -3478,16 +3478,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -3495,8 +3495,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729678426, - "last_issuance_block_time": 1729678442, + "first_issuance_block_time": 1729682526, + "last_issuance_block_time": 1729682542, "supply_normalized": "0.00000000" } ], @@ -3509,8 +3509,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -3518,16 +3518,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -3535,16 +3535,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -3552,16 +3552,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -3569,16 +3569,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -3586,8 +3586,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729678426, - "last_issuance_block_time": 1729678442, + "first_issuance_block_time": 1729682526, + "last_issuance_block_time": 1729682542, "supply_normalized": "0.00000000" } ], @@ -3600,8 +3600,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -3609,16 +3609,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -3626,16 +3626,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -3643,16 +3643,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -3660,16 +3660,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -3677,8 +3677,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729678426, - "last_issuance_block_time": 1729678442, + "first_issuance_block_time": 1729682526, + "last_issuance_block_time": 1729682542, "supply_normalized": "0.00000000" } ], @@ -3689,17 +3689,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_hash": "5f6b1f756208337d0a5deb046d2681ba4db56fa79507af28d4491288a803e5a2", - "block_time": 1729678714, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_time": 1729682826, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3:1", + "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3735,23 +3735,23 @@ }, { "tx_index": 58, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_hash": "7cf8dae24183c59b58d56ddb1f29a187c1ff2793b9edb12710f907f19efff46d", - "block_time": 1729678710, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_time": 1729682822, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "supported": true, - "utxos_info": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2:1", + "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "status": "valid" } }, @@ -3759,17 +3759,17 @@ }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 191, - "block_hash": "1a9a9845f8c16cf06484b4d2afa97dc24426220406fd07aa82f0e48dc9a89b35", - "block_time": 1729678705, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", + "block_time": 1729682817, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694:1", + "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3805,17 +3805,17 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "block_hash": "29d9af9de259a40ad804bf15da28bbae897047a186b5f43da90d5d5df27a883a", - "block_time": 1729678701, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", + "block_time": 1729682813, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806d5956f8352c1ff14ab40ab558c08c35f67ef34d806f8fb56154507ae6c0521b27f52db6d4ac9168d680ba169e41ef98c76eb1b6b1f4740ff07f576f45f1400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37:0", + "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3823,14 +3823,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -3838,7 +3838,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3857,17 +3857,17 @@ }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 185, - "block_hash": "37a13a425aabe49af51c4e383cdffd32f73375c4418ae04300e59292b49f5ae7", - "block_time": 1729678670, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "block_hash": "59b635339e6a5719ed96d6699c10b4f8b84a5b7d229188ab5c9033da064ad5fb", + "block_time": 1729682791, + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9:1", + "utxos_info": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3909,20 +3909,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -3944,9 +3944,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3961,7 +3961,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3987,9 +3987,9 @@ }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4004,7 +4004,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4030,9 +4030,9 @@ }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4047,7 +4047,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4073,9 +4073,9 @@ }, { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4090,7 +4090,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4121,10 +4121,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, "block_index": 155, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4149,7 +4149,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4158,10 +4158,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4186,7 +4186,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729678464, + "block_time": 1729682563, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4198,10 +4198,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4226,7 +4226,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729678447, + "block_time": 1729682547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4238,10 +4238,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4266,7 +4266,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729678442, + "block_time": 1729682542, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4278,10 +4278,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4306,7 +4306,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4324,22 +4324,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4348,22 +4348,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", + "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678460, + "block_time": 1729682559, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4372,22 +4372,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", + "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", "tx_index": 20, "block_index": 133, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678455, + "block_time": 1729682555, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4396,22 +4396,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", + "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", "tx_index": 19, "block_index": 132, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678451, + "block_time": 1729682551, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4420,22 +4420,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0ba98ab6cccc8df44723310013e7f8cea8a92cf7f847ff523622f510f450ab0d", + "tx_hash": "ea72a6c654c3094836a7b3a5ec670df4dd26ed8e5efcc563f823d58388c518b9", "tx_index": 15, "block_index": 127, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678430, + "block_time": 1729682530, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4444,22 +4444,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4474,22 +4474,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4507,7 +4507,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4519,7 +4519,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101bc158e372acaf77cc139bd5a044fe5c3f9431e90d584b48cba828c9eb87468ec00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a2992aea7460499574a1075a331fb27e9a41f875b491170470ff9b8d6fa676c055374d262dd24ff9f64bb9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "020000000001010b783b703c9ae111db37e3edbacea1d6b681e5c72388b073377fd5474ce87a9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a2995f69e555a43c5e63074253045d3088622743235cc11cd756fdc0d3fe0605d5b15a72e706f1d4c78639bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4537,23 +4537,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" }, "name": "btcpay", - "data": "434e5452505254590b6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f96280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "data": "434e5452505254590b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101d2bb52cb559f93f1a4dcd9da75c60b37a55f22fe54bc7a178e72bdd3030d7dda00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03b80b000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da00000000000000004b6a4991bdf4447e8ae99bc910117cd4e0c1f4c9ecd735aa0359e45088839790177a31f1dfa2ad238196453c59a32f1b544eb99e8bd7aa70a8c913456e7a58be3abe4aca4e01017d7cbbd658c79f052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101a14227f1320893fa8270679d232cdc4fb916e8a8c4092256f1153095b1b03fb0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03b80b0000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee200000000000000004b6a49a246921c600588061e396e34460288412e7fe162e957fd6b07acf656bf3f2ac69c63afe659d5da29175ae150e47bfbe681b8eaa6370f615bbaefb61b8e2d93db70aa371748a2af823bc79f052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "status": "valid" } } @@ -4562,7 +4562,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "quantity": 1000, "overburn": false }, @@ -4572,27 +4572,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "02000000000101feb91f1f1577b25b907a4589a0e2735db56c82c19834454d2526b0fc042535f500000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000" + "rawtransaction": "020000000001010831406cb2940d069bef89f68b3c083d46012e7eb9d8a848af1240de26446f56000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3" + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a" }, "name": "cancel", - "data": "434e54525052545946b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "data": "434e545250525459461f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001012be1bfd3a4bc6f40d0ef7358c63a1d717ef4c2048a1ee3036be4220daa3897fb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff0200000000000000002b6a29204c1cac4ee322a51b1fa47e446e547ae4519ac1319f04cbe8073cded92846055cba14e3ae40d7528d9bba052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101f6102456ad9c970ca389c03cca7adc21161ef6f1203c154c74bcdaa8fefed8d8000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a291415e8a26efe9b029b11e5a4799abc6c17d740c2c9fb0c505494944ef5ab17ff51cc4469337688c4899bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "status": "valid" } } @@ -4601,7 +4601,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4620,7 +4620,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101a038918486b2f8aeb5b1a3632ada819922dd77a8b11db876b7a706c95c52828a00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000226a2007772d9f4be05ada15636d7f0473778e0c7a198f06196c43509a80f9a6f41066aabc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101daec0411a39537e60d7b66a20d5d7f62fd98c2d247d4788d18b88cd2eb4b7b9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000226a20054abb8dd95e1d4c69ec265331b9d7dcb125027a834c03c71d913be50132fadbaabc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4636,7 +4636,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4660,7 +4660,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "020000000001012f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd202000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c3809203ffffffff0200000000000000002c6a2a6f5a2426cd1d4d5a24c9525bf8de62939b34c6ed3eb2ed7f54a45d36356ccb11b7f3e39b57863bcdf06db0540a2701000000160014ddee21c1db3b89b4ee1cb1b2ea482a26c380920302000000000000", + "rawtransaction": "020000000001011ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b80200000016001492c153ddd35e0d4aea3650d10120755c34e7990dffffffff0200000000000000002c6a2adfa9dc36f662b3ca45d207632d3d00ab19cf6af991570f5f89c1220f01a1075b0e85f923bb36e6f1271bb0540a270100000016001492c153ddd35e0d4aea3650d10120755c34e7990d02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4682,14 +4682,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4708,7 +4708,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101c4520d589d19701a90b7d9ec6fa39ea967dbdf13c629e3d27d99d0aa451caef200000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21e62fce5636aa2aaa8ab4203a29d020d7fa91ab62b52cd152a407a2826af3827ef86fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "0200000000010199d1c48a6c745e75a1b7f5b0a08e3ba15b20d8c43a08fe211563efc56c69cf1a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a213f626915e1985cc6b16d51e7be78949447b6307b760b934fcc0e257cebdffc701e6fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4725,10 +4725,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "transfer_destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "lock": false, "reset": false, @@ -4741,7 +4741,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "02000000000101a3eeb9334177683eb3d89ecf3fda3aba9396f930b26572039d481b4fa04944e100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff032202000000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da0000000000000000236a21723a052598c88d16fbb9acf530d04edda6bf62f3f53f74932ba7794df13a9e2edf85b2052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "020000000001010fd1eb92bbad2c48eb444874c6f0c4657c2ab70bb15ebc55798f0a3bc551f27d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0322020000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee20000000000000000236a21b1c4e3df44d1a16438a85c7fa94ceef59a148c206940254b3544ffcc2830e3e93185b2052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4766,16 +4766,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", 1 ], [ "MYASSETA", - "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", 2 ] ], @@ -4783,26 +4783,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280d5dfbe27ae299c5fd959d4d431b265cb285f92da806d5956f8352c1ff14ab40ab558c08c35f67ef34d8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e545250525459030002808dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "02000000000104a1d1ae3c7aa89d2e9075cfed6920f7dbf37e555dd499ce0fae61b5c99b61e09300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8b1ebe38e8dd0b05847d2ed187cab08d83cc881fad02dc7ee12e46a4aca2b4cb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff65d9cde3d86f9d8995c94dbc86801fc37547394f359a5cbb22d5b894caef67dd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92dafffffffff9d347dea48f146afafe09609b995b21b27af53731de5bc2d1c1bda83cf40b9000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff03e80300000000000069512102e09a32f2f9fdd1081495ff75372c52057042bb569bcb1ea850fcca565a3e32d821030462aa6de63359abd37a897b61eeed2bdb2ef6c30f726e2e85020aef808fc587210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee80300000000000069512102ef9a32f2f9fdd10814b68818c595e99a756c92cac807dcf733ed783391166d8c210396b86200bf65a19eff657031d5e458731ba2c135718123a1a74a6f83ece0e910210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53ae14f316a804000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000000000000", + "rawtransaction": "020000000001044c537dabcab96e140c3de3e610c12f7a1d9a3a4a7404b3ea0fd783b06b12a5cc000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0d169c69e6f466fca914be8e6728a659b5b957d69b1a14598c5b4c8efdb9c558000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff8713e897e6d149ef33f921baca67449dfd4c8abfe191a11dba5ba7efac761f85000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffffdc3950eeffb56f0515eb56974b98e46efec64858c8c3e3243aa4fb74ff65002000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03e803000000000000695121028a319a76b39fa86de25d059cb44038482de77b7e1ec28f7e5517a4d9c15f977921026c123153a20b731059896c39ccb2fb958331ba4e0c354374e1bb70a8b9f1234a210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210285319a76b39fa86de27e72f146a19c8d6becb6431bf1a51b13e553c0c1fe7003210342f0f9de049affe3c5618471ee8a59f8df1bf402abea78fbc3f315c4d59e0f4b210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753ae14f316a8040000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4814,7 +4814,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4831,7 +4831,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -4845,7 +4845,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101afb41532a5271bd113380fe2eca418d2ebefc67537ea7e4ba69fbb45c97485a000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000356a33c0a0ea1cdcdcea8771a7ed0159e53c7e87c145c1c79d80c143189350febc202196b3684fe3499d55cc50cd54fc0ae2a2c68b2f51b8052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101039f99a470cfc81bee0acf8fcf740555e0536d14fe0423107ac0039eab47e3ec000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000356a333a1d44a001f39a8c4f6cd43e00aa23db97269c6e1e3128929039b3b13ec245a2e828dcf6f24885e28017be6120538fa6b1fda651b8052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4867,8 +4867,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4884,19 +4884,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8806d5956f8352c1ff14ab40ab558c08c35f67ef34d", + "data": "434e54525052545902000000000000000100000000000003e8808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "020000000001012e2335c709f9e69e04236ccbdda9f04412633647e93e369f2d071373c261b98e00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000306a2e7f85c498b9ebdc5cbc1cf69ce660bc12eeeab2c1e7bb01dbb5773636c1b1a4a6b337b1e4b819ce115d7d33b8766476b9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101edbc6af28317e11cb33f4357af10edcceaac7007101229df0e0f5b266efc5119000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000306a2ec4c584753cfc5f54fd728bd504485ea7c0022b177d2b951c114753c59b951f21cb5a3c366eb074e0dbc5377bf28476b9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "memo": null, "quantity_normalized": "0.00001000" } @@ -4906,23 +4906,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904806d5956f8352c1ff14ab40ab558c08c35f67ef34d07ffff", + "data": "434e54525052545904808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "020000000001018d9ed5eaedf42041d3e5236e4f6c2d97b3323ed4663739d97b835ff31638751400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000236a21c5feb8a12643829353f33e9e64237c94424868e23d4a17ad8585d50b41eaac639a6fbc052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101fa8e0467963955db9b72c729b5e5a51e558034ecb37cf52096280320ce039a3f000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a212f203e2ff10b6c3da89c8b96c3fce9a81993643a0dbe6423f91913c2f4691379726fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "flags": 7, "memo": "ffff" } @@ -4932,8 +4932,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "quantity": 1000 }, "name": "dispense", @@ -4942,7 +4942,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "02000000000101f6f3038958ad55e8d94b376dea10b837a5e90d12450e7636e8b602f2dd08962f020000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34dffffffff03e803000000000000160014ba169e41ef98c76eb1b6b1f4740ff07f576f45f100000000000000000c6a0a75fead466b940cccbc7be3c10827010000001600146d5956f8352c1ff14ab40ab558c08c35f67ef34d02000000000000", + "rawtransaction": "020000000001016caf441850af621deeb22a8b97035139e3df0bc445be782578596bcf50638311020000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3bffffffff03e8030000000000001600143d3b0471e07117073921fa17a6ef90013da3ceea00000000000000000c6a0a121d896d99ff4f3d2943e3c10827010000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3b02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4955,7 +4955,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4986,7 +4986,7 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001015c241cf3a20d3da5294a5c4d45851da4e2282dfb111062872161e922b09bc0af00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000316a2f5e5b45e8f074107450cf208569d2f9e118b82a67711097f06dc09dfb1cad01405d2f707e19b06d905b841d356af24a3bb9052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "020000000001018b14f68661cd4bc2bb463285470d615b44410aabf699e8fd7be98b3f7eea34e3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000316a2fd4691e395c696ccf94398842f72b756c82ccff1116c8d5c145690c13fd42a43bb9d1b3248463f38c391d48551026123bb9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5015,13 +5015,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5033,7 +5033,7 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "020000000001015340508a67369995b825cb0d23e7db98642ef14f6f50d0fac6825bd44ec6544b00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff020000000000000000166a144d3d0169a3b24b20cf61fa28b4c3ba0e3c1ca62b69bf052a01000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000000000000", + "rawtransaction": "02000000000101b46d8a28486b8cb7107ab18a8442fd880bf203e7c32523a9781850823e600e7e000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000166a1410682282f59c3b0a5ca5eaa40bdd7905511d0c7c69bf052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5047,8 +5047,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "8eb961c27313072d9f363ee94736631244f0a9ddcb6c23049ee6f909c735232e:0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5061,12 +5061,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c386562393631633237333133303732643966333633656539343733363633313234346630613964646362366332333034396565366639303963373335323332653a307c5843507c31303030", + "data": "434e545250525459646263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c376466323531633533623061386637393535626335656231306262373261376336356334663063363734343834346562343832636164626239326562643130663a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001065cd4d29c2be11e496a618e60f3b64709fa7fa4a1e092a170d10dd6f18bfa73bd00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff8c33b605f3589de4ccb1135d15e4a867e4f3b36265daf3917eed27c233433f0400000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff299e07e8b5a4b237d19e04c335d588674083607bee73d829be9b8d6a409e528300000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff7897f7b859ad5eefa08207d5782a38a6413cb26e50b8be7880fb3c03cae5852000000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff2b50c1cae4ec7a29d8bb6a2be159f2a7550515dee4a5a3a454172bf7e0b692eb00000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff3605d21ae1d9467d4259bef5ba77406531dc47926f6edcc5405b0109a7e32ed100000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92daffffffff04e803000000000000695121030608dd0bd650bd2b990cb01688d9fe67e5781da23a6a74255a987e3824c3bee5210282229f02b495620ba68ba594e60bec3977a8a25ac3c066ba8d0eabf15e45b804210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121030608dd0bd650bd2b995ae546cb9eff21e17414a97c3a263706d93d367b9eba8e2102d425c304f2812404a68ab7c2bd51f66072e8af5494d420a08c5bf0ab5f47eed4210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aee803000000000000695121032c08dd0bd650bd2b995ae1479f97ff6a8b537db37e3c256263e0090148a88c402103e714f130c6e714659feed3a1df67955241d89b6df1b116c6b56bc9c86874db7e210254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e53aec36d22fc06000000160014d5dfbe27ae299c5fd959d4d431b265cb285f92da02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001061601d308588e431d26b890108b94617fa7431e9c9c2f6434a34ce25a92d330b3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff81f9e96f1c676e35119d42d802dc15052ebef7baacac20e343f655506da272d0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffe09946c6ca88fadd9d9368e49d5614fbc5cc89b362fb6aad25fd3f05a036340d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffff4f007867d945d244894a2d8d50cb81542fa9b80e199672f6c5836b3f03e661c000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff060805e469980cd6df3c145d10de189d6dbd57644ebd31944017a3fdc766b99b000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffaafed3a305e0ac1925ca22615f218910bf78f0bef1805435d02b2acd25a44561000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff04e8030000000000006951210324fb63d58d0fcffccf23e00777204855520a052c9e106c0c16297b1b5f0bde692103bc851ac7b809d438c75205ef32b87dd4a5170dc6457ff7a36a52fadb2baea2e8210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210324fb63d58d0fcffccf72b10635354142565b416e9b16201d112d7c0a575ad8b92102eed31492ec53813d924049ab31fb3188eb1315994434f8be3954fed02cfaa301210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee803000000000000695121030efb63d58d0fcffccf23b354636e495839212427c8452548731c4c68356dea9f21038fe477a4d930b55ba2237f9c05cf09bcdf7677ad7c069bdf5d369ce91e9fc13f210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aec36d22fc060000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5079,8 +5079,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5093,12 +5093,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964303335356530663463386366633862346436366336356532376464663739656630363666313132303630363762386263646335623836363166396333323366643a307c6263727431713668306d75666177397877396c6b3265366e327272766e39657635396c796b367039373271707c5843507c31303030", + "data": "434e54525052545964313532373434343938643135623934303430613235343432316664653333366631353631386338386163383464663433613238363338376566373466623432323a307c6263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "02000000000103131af70028bd62be68b4696b2820a49affe13885c2899f5b61f781a7ead8439c01000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff2f20ddf83423fea03a24b6a0990ffb016a8f4f19356b5af105b85e5fb502cbd200000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffffa85601cb5725c44a74ee302135a63986e670f990bee5b7cdf6996d120da8fad901000000160014fb3d8d057149cec7e3810d8fdbc2072a6f911942ffffffff04e8030000000000006951210244ac0de221d73fb9d88c257c117bd7a1a930f12f447ee37050db73b4364989fd21026127286fdc7033046ef6b3a5147969514abdb389be922f0b686ea38be6a9cee1210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee8030000000000006951210344ac0de221d73fb9d8d0237915288bf2fc36a1714322b034508c65f6315b896c21033c72772dde75220a2fe4ecf9497d6a5615bdf1cdf8ca210c2639f983fcf79a73210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853aee803000000000000695121036eac0de221d73fb9d8982c78163fc2ed9747c26b1628b07832ef1782002abf9c210354421a58b81455335793d595224f0f607b8f83bf8ea41869500cc0ef859cac2b210399c9924c9c3e8773288b7ef589d5aac70b0f85948de4309eba9b177340613e1853ae11780b2701000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194202000002000002000000000000", + "rawtransaction": "020000000001037b6abe53a2b2718fa8b0896ec766d6ddb0d84f9ed336ffb3ba2868c071e05bb6010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff1ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b8000000001600144f05c52b2783836407de9a1525fede28bf247496fffffffffcdf62dbc78037c7ca6c6af3aba177b0f8f8eadb6349b01146f19dc9edbfa372010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff04e803000000000000695121035649a707698833ea7cd9846d82e9677525ca137832181458190d8f2fd10237742102ce7d2ee468da0c1fdf16b258c9b26ac1d4c75d2f032da01bb329d9109a37a330210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121035649a707698833ea7c8e8d6fd5b8647577911f2e3117461d4f5ec96b81413108210392386bb26bc71d49d917a7039ab06898da9c04770176f10eaf6edd06dc67ef51210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121027c49a707698833ea7cdccf3389a73f3d49b07b60321d46512d3dbb1fb03002f72103fa491cd50ebe692cec20d469fc845bf9b7ff654e6015947fd51dea71a80f95c3210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253ae11780b27010000001600144f05c52b2783836407de9a1525fede28bf24749602000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5114,8 +5114,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -5123,16 +5123,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729678571, - "last_issuance_block_time": 1729678579, + "first_issuance_block_time": 1729682681, + "last_issuance_block_time": 1729682689, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "owner": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "owner": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "divisible": true, "locked": false, "supply": 100000000000, @@ -5140,16 +5140,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729678568, - "last_issuance_block_time": 1729678568, + "first_issuance_block_time": 1729682676, + "last_issuance_block_time": 1729682676, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 100000000000, @@ -5157,16 +5157,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729678518, - "last_issuance_block_time": 1729678518, + "first_issuance_block_time": 1729682627, + "last_issuance_block_time": 1729682627, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 40, @@ -5174,16 +5174,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729678464, - "last_issuance_block_time": 1729678468, + "first_issuance_block_time": 1729682563, + "last_issuance_block_time": 1729682567, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 19, @@ -5191,8 +5191,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729678447, - "last_issuance_block_time": 1729678460, + "first_issuance_block_time": 1729682547, + "last_issuance_block_time": 1729682559, "supply_normalized": "0.00000019" } ], @@ -5204,8 +5204,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 10000000000, @@ -5213,15 +5213,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729678408, - "last_issuance_block_time": 1729678421, + "first_issuance_block_time": 1729682508, + "last_issuance_block_time": 1729682521, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5229,14 +5229,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5244,7 +5244,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5257,7 +5257,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5279,9 +5279,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5296,7 +5296,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5322,9 +5322,9 @@ }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5339,7 +5339,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5365,9 +5365,9 @@ }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5382,7 +5382,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5408,9 +5408,9 @@ }, { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5425,7 +5425,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5451,9 +5451,9 @@ }, { "tx_index": 52, - "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5468,7 +5468,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5499,13 +5499,13 @@ "/v2/assets//matches": { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5519,7 +5519,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5539,13 +5539,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5559,7 +5559,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5579,13 +5579,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "tx0_index": 49, - "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 50, - "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5599,7 +5599,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5626,20 +5626,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5647,20 +5647,20 @@ }, { "block_index": 125, - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", + "event": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5668,20 +5668,20 @@ }, { "block_index": 124, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5689,20 +5689,20 @@ }, { "block_index": 124, - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "event": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5714,16 +5714,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5741,12 +5741,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -5758,16 +5758,16 @@ }, { "block_index": 195, - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "event": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678723, + "block_time": 1729682834, "asset_info": { "divisible": true, "asset_longname": null, @@ -5779,16 +5779,16 @@ }, { "block_index": 194, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "divisible": true, "asset_longname": null, @@ -5800,16 +5800,16 @@ }, { "block_index": 194, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "divisible": true, "asset_longname": null, @@ -5821,16 +5821,16 @@ }, { "block_index": 193, - "address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "asset_info": { "divisible": true, "asset_longname": null, @@ -5848,20 +5848,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -5883,14 +5883,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", + "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -5905,20 +5905,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -5933,20 +5933,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -5961,20 +5961,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -5989,7 +5989,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729678408, + "block_time": 1729682508, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6001,10 +6001,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6012,7 +6012,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -6025,10 +6025,10 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6036,7 +6036,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -6049,10 +6049,10 @@ }, { "tx_index": 55, - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", "block_index": 189, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -6060,7 +6060,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678697, + "block_time": 1729682809, "asset_info": { "divisible": true, "asset_longname": null, @@ -6073,10 +6073,10 @@ }, { "tx_index": 44, - "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", + "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", "block_index": 157, - "source": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", - "destination": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", + "destination": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6084,7 +6084,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678568, + "block_time": 1729682676, "asset_info": { "divisible": true, "asset_longname": null, @@ -6097,10 +6097,10 @@ }, { "tx_index": 43, - "tx_hash": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8", + "tx_hash": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc", "block_index": 156, - "source": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", - "destination": "d9faa80d126d99f6cdb7e5be90f970e68639a6352130ee744ac42557cb0156a8:0", + "source": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", + "destination": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6108,7 +6108,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678562, + "block_time": 1729682672, "asset_info": { "divisible": true, "asset_longname": null, @@ -6127,9 +6127,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6138,7 +6138,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6148,7 +6148,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -6164,9 +6164,9 @@ }, { "tx_index": 29, - "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", + "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", "block_index": 142, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6175,7 +6175,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6185,7 +6185,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678493, + "block_time": 1729682602, "asset_info": { "divisible": true, "asset_longname": null, @@ -6201,9 +6201,9 @@ }, { "tx_index": 30, - "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", + "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", "block_index": 150, - "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", + "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6211,10 +6211,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6222,7 +6222,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678537, + "block_time": 1729682636, "asset_info": { "divisible": true, "asset_longname": null, @@ -6238,18 +6238,18 @@ }, { "tx_index": 33, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6259,7 +6259,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -6280,9 +6280,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6291,7 +6291,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6301,7 +6301,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -6329,7 +6329,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6337,7 +6337,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6346,7 +6346,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6354,7 +6354,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6363,7 +6363,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6371,7 +6371,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6380,7 +6380,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6395,27 +6395,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6430,7 +6430,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -6444,27 +6444,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", + "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", "block_index": 147, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6479,7 +6479,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678514, + "block_time": 1729682623, "asset_info": { "divisible": true, "asset_longname": null, @@ -6493,19 +6493,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6513,7 +6513,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6528,7 +6528,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -6542,19 +6542,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6562,7 +6562,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6577,7 +6577,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -6598,8 +6598,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "owner": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false, "supply": 0, @@ -6607,8 +6607,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729678575, - "last_issuance_block_time": 1729678575, + "first_issuance_block_time": 1729682685, + "last_issuance_block_time": 1729682685, "supply_normalized": "0.00000000" } ], @@ -6618,10 +6618,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6646,7 +6646,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6664,22 +6664,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "ee1d8ad6f13149cc946c4b7b4330875501e3ddc510a8355d30dc8ef3a7d9ef4a", + "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", "tx_index": 13, "block_index": 125, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6688,22 +6688,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4", + "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", "tx_index": 12, "block_index": 124, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678417, + "block_time": 1729682517, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6712,22 +6712,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6742,22 +6742,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "9da7e33f2b526cccc6067ac3ae6497fca7aac150eecf8f4bd3a944e198c5bd77", + "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", "tx_index": 11, "block_index": 123, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678413, + "block_time": 1729682513, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -6773,9 +6773,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6790,7 +6790,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6816,9 +6816,9 @@ }, { "tx_index": 52, - "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6833,7 +6833,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6859,9 +6859,9 @@ }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6876,7 +6876,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6902,9 +6902,9 @@ }, { "tx_index": 54, - "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "block_index": 188, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6919,7 +6919,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6945,9 +6945,9 @@ }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6962,7 +6962,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6993,9 +6993,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7010,7 +7010,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7038,13 +7038,13 @@ "/v2/orders//matches": { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7058,7 +7058,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7078,13 +7078,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7098,7 +7098,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7125,15 +7125,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "btc_amount": 2000, - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "status": "valid", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "btc_amount_normalized": "0.00002000" } ], @@ -7144,9 +7144,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "block_index": 187, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7164,7 +7164,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729678688, + "block_time": 1729682800, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7190,9 +7190,9 @@ }, { "tx_index": 54, - "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "block_index": 188, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7210,7 +7210,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7236,9 +7236,9 @@ }, { "tx_index": 49, - "tx_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", + "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", "block_index": 184, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7256,7 +7256,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678609, + "block_time": 1729682719, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7282,9 +7282,9 @@ }, { "tx_index": 51, - "tx_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "block_index": 188, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7302,7 +7302,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678693, + "block_time": 1729682804, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7328,9 +7328,9 @@ }, { "tx_index": 57, - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", "block_index": 192, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7348,7 +7348,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678710, + "block_time": 1729682822, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7379,13 +7379,13 @@ "/v2/orders///matches": { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7402,7 +7402,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7422,13 +7422,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7445,7 +7445,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7465,13 +7465,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "tx0_index": 49, - "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 50, - "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7488,7 +7488,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729678609, + "block_time": 1729682719, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7514,13 +7514,13 @@ "/v2/order_matches": { "result": [ { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 54, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7534,7 +7534,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7554,13 +7554,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "tx0_index": 51, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 52, - "tx1_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7574,7 +7574,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729678688, + "block_time": 1729682800, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7594,13 +7594,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", + "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", "tx0_index": 49, - "tx0_hash": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx1_index": 50, - "tx1_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7614,7 +7614,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729678609, + "block_time": 1729682719, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7659,66 +7659,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", + "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", "block_index": 121, - "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", + "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729678403, + "block_time": 1729682503, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2b92c5ba4bff308186e1596603e2fb377e8b02051a85215b4b61c17b3d1a6d90", + "tx_hash": "84dc4175af426ef98224178760c28214eaa81cf980a71eb9957bc3756bcaa276", "block_index": 120, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729678399, + "block_time": 1729682500, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "cc87e0fae13e23537d7b3cad7e7cd469f265c9a066362727f6ea8698b7b239f6", + "tx_hash": "a3ea78c95e6a751e8ac77f29ee3cd8a91dc650c83a413d66db6fd0d78c72a98b", "block_index": 119, - "source": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038", + "source": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729678395, + "block_time": 1729682496, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "4e1b0094704b6e6e79f2927b09491dc1f2d5109a4e94f701d4167a0b6f6b53be", + "tx_hash": "8f19504cf556b70ede320708386f56c1830989b1dc0bf3aad9ad12230d9b6072", "block_index": 118, - "source": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729678391, + "block_time": 1729682492, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "399533b3fb6b2ff6fca2246201a37f73f7d45e7df2445f476364fce0fd2f3fef", + "tx_hash": "312cc530ddb1eca6dc9d98fea85e8a41dc49b634ca4d699da68651c065bf88f6", "block_index": 117, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729678388, + "block_time": 1729682487, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7730,9 +7730,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7741,7 +7741,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7751,7 +7751,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -7767,9 +7767,9 @@ }, { "tx_index": 29, - "tx_hash": "3b3e7212ec40fd99fbe4d966b6d3f40380194782d455631810fd5a792562425d", + "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", "block_index": 142, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7778,7 +7778,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7788,7 +7788,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678493, + "block_time": 1729682602, "asset_info": { "divisible": true, "asset_longname": null, @@ -7804,9 +7804,9 @@ }, { "tx_index": 30, - "tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", + "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", "block_index": 150, - "source": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", + "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7814,10 +7814,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e7d4149f996879da2b19a57be9e7fbf2c9608cd22cfcded3c2b31e65e3eb07be", - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 0, - "last_status_tx_source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7825,7 +7825,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678537, + "block_time": 1729682636, "asset_info": { "divisible": true, "asset_longname": null, @@ -7841,18 +7841,18 @@ }, { "tx_index": 33, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7862,7 +7862,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -7883,9 +7883,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7894,7 +7894,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7904,7 +7904,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -7924,19 +7924,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7944,7 +7944,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7959,7 +7959,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -7973,19 +7973,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7993,7 +7993,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8008,7 +8008,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -8027,20 +8027,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -8061,20 +8061,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -8097,12 +8097,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "tx_index": 41, - "utxo": "647ef2e3f977ec55a84d622a11865d1ed225807c750390f2fcce6c9c223fc05b:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "utxo": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "divisible": true, "asset_longname": null, @@ -8114,16 +8114,16 @@ }, { "block_index": 154, - "address": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "address": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "divisible": true, "asset_longname": null, @@ -8144,27 +8144,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 561, @@ -8173,14 +8173,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -8191,9 +8191,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 560, @@ -8202,9 +8202,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -8214,24 +8214,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -8241,9 +8241,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 558, @@ -8255,15 +8255,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } }, "/v2/events/counts": { @@ -8298,16 +8298,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -8317,9 +8317,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 557, @@ -8329,12 +8329,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -8344,9 +8344,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 554, @@ -8356,39 +8356,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", - "utxo_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "block_time": 1729678732, + "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "divisible": true, "asset_longname": null, @@ -8398,36 +8398,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "block_time": 1729678718 + "block_time": 1729682830 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729678718, + "block_time": 1729682830, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "block_time": 1729678718 + "block_time": 1729682830 } ], "next_cursor": 536, @@ -8444,27 +8444,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8479,7 +8479,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -8493,27 +8493,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", + "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", "block_index": 147, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "destination": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "last_status_tx_hash": null, - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8528,7 +8528,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729678514, + "block_time": 1729682623, "asset_info": { "divisible": true, "asset_longname": null, @@ -8542,19 +8542,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "1dbda350147537d2de8ebd7e25de71667f218a991ce2e2556afad71db7f2681c", + "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8562,7 +8562,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8577,7 +8577,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678488, + "block_time": 1729682597, "asset_info": { "divisible": true, "asset_longname": null, @@ -8591,19 +8591,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "690b77925c012b969b4cfd6419524ec8710b4d6c2a8c8b8e2805e2833c7ac6cc", + "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", "block_index": 140, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "9dd8bc7422e30bc1813d69d0e72cc552990f03300bad6708ec65781e9241a752", + "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8611,7 +8611,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8626,7 +8626,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729678484, + "block_time": 1729682583, "asset_info": { "divisible": true, "asset_longname": null, @@ -8645,10 +8645,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8656,7 +8656,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -8669,10 +8669,10 @@ }, { "tx_index": 62, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8680,11 +8680,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -8693,10 +8693,10 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8704,7 +8704,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -8717,10 +8717,10 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8728,11 +8728,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -8741,10 +8741,10 @@ }, { "tx_index": 56, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8752,11 +8752,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -8771,14 +8771,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -8793,20 +8793,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "85a38534d74c1bf27d454490c0d20faeea61e6b36739b07644581b923a1f9d17", + "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -8821,20 +8821,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729678579, + "block_time": 1729682689, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "1f91b7a994fc998ba6e8bf86e367542ac6ad98eed4a767eb466bc514a5ef8a66", + "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -8849,20 +8849,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678575, + "block_time": 1729682685, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "2d87968548a45781a748c7fae90bec188404b3914b2b22a3c0cede41824fd045", + "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -8877,20 +8877,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678571, + "block_time": 1729682681, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", + "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "issuer": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "transfer": false, "callable": false, "call_date": 0, @@ -8905,7 +8905,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678568, + "block_time": 1729682676, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8916,14 +8916,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "transfer": false, "callable": false, "call_date": 0, @@ -8938,7 +8938,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8947,16 +8947,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -8967,16 +8967,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" } ], @@ -8987,9 +8987,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "block_index": 138, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8997,14 +8997,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678476, + "block_time": 1729682576, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "1602cbae64781823b761766b57061006946eb39cb73dea1f8a3bb4b130e3e9ce", + "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", "block_index": 137, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9012,7 +9012,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678471, + "block_time": 1729682571, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9022,9 +9022,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "block_index": 138, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9032,17 +9032,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729678476, + "block_time": 1729682576, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, "block_index": 155, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9067,7 +9067,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9076,10 +9076,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "tx_index": 22, "block_index": 135, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9104,7 +9104,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729678464, + "block_time": 1729682563, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9116,10 +9116,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "tx_index": 18, "block_index": 131, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9144,7 +9144,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729678447, + "block_time": 1729682547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9156,10 +9156,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "tx_index": 14, "block_index": 130, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9184,7 +9184,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729678442, + "block_time": 1729682542, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9196,10 +9196,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "19f2a47b6248b6648f1b63efd2d38ac49103c110ec2e6cd346df00c195625623", + "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", "tx_index": 10, "block_index": 125, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9224,7 +9224,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729678421, + "block_time": 1729682521, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9242,22 +9242,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9266,22 +9266,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ae7fa77cd469799d0dd9f44b7fc50685b5b0e793a1d60892a069ad79d9288f96", + "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", "tx_index": 21, "block_index": 134, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678460, + "block_time": 1729682559, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9290,22 +9290,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "6d911c727f4df3b77852e93da1fbe8ed811749e979f596110c8ef15f4ad450f1", + "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", "tx_index": 20, "block_index": 133, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678455, + "block_time": 1729682555, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9314,22 +9314,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "4fdb65177d040de8ebd17a88e96fe5d3876dd405a77447dabb5e00ca80467910", + "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", "tx_index": 19, "block_index": 132, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "ce1f68a09862279deaebf16d30ec8643ba462517fbcd0d9f4aa908a0c31cde90", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678451, + "block_time": 1729682551, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9338,22 +9338,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "696c4abfb0832fbf79528b17657b0c9f289c40aa1a503c32dee9760562df53a4", + "tx_hash": "ba53cd3c00d1019d1b50204c486102b904b364bf02919d25a42979da7df404bb", "tx_index": 17, "block_index": 129, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "fairminter_tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678438, + "block_time": 1729682538, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9367,22 +9367,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, "block_index": 136, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -9399,8 +9399,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f", - "address": "bcrt1qmhhzrswm8wymfmsukxew5jp2ympcpysr0xpxtn" + "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", + "address": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l" }, { "vout": 2, @@ -9408,8 +9408,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d", - "address": "bcrt1qvrsult5fz3ar9j2xusrcly3d348hwyme2yk038" + "txid": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", + "address": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt" } ], "next_cursor": null, @@ -9418,28 +9418,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832" + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139" }, { - "tx_hash": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a" + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54" }, { - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468" + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" }, { - "tx_hash": "e60162f6e8017525f64b045ef6ff92d26e407e45f18b6a639cca67e7709cf498" + "tx_hash": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85" }, { - "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad" + "tx_hash": "9f412c2a0eb172e04aeb2cecbbe34d0253bb97d4ee2a89ef5b3ebeda5bbd82b9" }, { - "tx_hash": "b890b4472ef08164795732b87b5564456e17e4401fdb655783344fff45c748b4" + "tx_hash": "ee4098f053d5cc0b7cb0356bd498c983b4bdc9bf6239a734af5d0ea14d728cd1" }, { - "tx_hash": "f36d45bcc314f9964b7edc112f5a3647777b7396316cc1b2bacb9faccf6b4ab5" + "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1" }, { - "tx_hash": "e38f54117c1e818fed8ce0877e192c1b945312de5a9c69f9218e8449a98bc7bc" + "tx_hash": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed" } ], "next_cursor": null, @@ -9447,8 +9447,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 6, - "tx_hash": "f0206715d5e808c47174ba1de958c4299fa90963cc49f3f708096968ddc8e9a9" + "block_index": 4, + "tx_hash": "b5d6deaa91e93fa3e4bb821a406408c40560ee36370b59b2a1fc2ed8b03b9197" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9459,17 +9459,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "d2cb02b55f5eb805f15a6b35194f8f6a01fb0f99a0b6243aa0fe2334f8dd202f" + "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0254271d1351c4b4db46f7beefae7409dbb37d40fa999cbaf043bccf8be5d2d33e" + "result": "0260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea4452727" }, "/v2/bitcoin/transactions/": { - "result": "020000000001017d6b9b0f9e939c920785e1be72ff459b709cc934eb4e20d214666e4a03003a370100000000ffffffff03e803000000000000160014fb3d8d057149cec7e3810d8fdbc2072a6f91194200000000000000000c6a0a95c6de5e62c4fa610cd8dced082701000000160014739d9c26e6ee51a22ade8e3745236c326b19a8d10247304402205fd85e2f2617f2cdcebf90bc31961766a27a9f50c3a4e3474cd64692f4fbb232022040b17ff6b1519b5449f01ae3362af4bd12ba6addab6e0cffdcb51abf938957ba01210378cff7b4313e8c6382234edac20e0c4b25886ca678fd5cbd9e487627f0f9b2df00000000" + "result": "0200000000010180192c8679dee5a88c6c1e5020a32ddfe3b5c790d01eaf884de43b4fc4a94e010100000000ffffffff03e8030000000000001600144f05c52b2783836407de9a1525fede28bf24749600000000000000000c6a0ae4629855183ecd800ac4dced0827010000001600141c271ea9891c8626e5d0b35a9c8868f7fa8ab976024730440220636b9ba1f51f071cd83e22caba118437be32e31f8d75416858820425802a169802203a3f999c266047dd6a1c2f1a0f22ded832143cebe17688f590da920eb1779560012103b178c6a6f98921e6e1470bbc2f8a1abd6fff27b71a15a5fc81c9d68ce1fa3e4e00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9492,27 +9492,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63 }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "quantity": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, "asset_info": { "divisible": true, @@ -9523,22 +9523,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -9548,22 +9548,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 196, - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -9573,30 +9573,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729678736.7024257, + "block_time": 1729682848.4038758, "btc_amount": 0, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "destination": "", "fee": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, - "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", + "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -9610,7 +9610,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, @@ -9619,19 +9619,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -9641,7 +9641,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, @@ -9650,27 +9650,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63 }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "quantity": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, "asset_info": { "divisible": true, @@ -9681,22 +9681,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "CREDIT", "params": { - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -9706,22 +9706,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "asset": "XCP", "block_index": 196, - "event": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -9731,30 +9731,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 }, { - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729678736.7024257, + "block_time": 1729682848.4038758, "btc_amount": 0, - "data": "0200000000000000010000000000002710806f8fb56154507ae6c0521b27f52db6d4ac9168d6", + "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", "destination": "", "fee": 10000, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", - "tx_hash": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", "tx_index": 63, - "utxos_info": "81404b9417ee9cb80949554196ad2e7213d3b8fe7299923be63cf8f0ee5ef98f:1", + "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "memo": null, "asset_info": { "divisible": true, @@ -9768,7 +9768,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729678736.7024257 + "timestamp": 1729682848.4038758 } ], "next_cursor": null, @@ -9790,15 +9790,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", "block_index": 196, - "block_time": 1729678732, + "block_time": 1729682844, "difficulty": 545259519, - "previous_block_hash": "49fd06b480f55018372eb64dcbcba263aff1ebffd0aefc75e3159985b6cc774d" + "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8" }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 544, @@ -9810,17 +9810,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "012d6d6ae4daf02f0a81224ad7f63227d480cb3eb72c922626f9449ef0ee7608", + "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", "block_index": 196, - "block_time": 1729678732, + "block_time": 1729682844, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "fee": 0, - "source": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "utxos_info": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1 0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9830,9 +9830,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 545, @@ -9846,16 +9846,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "out_index": 0, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 277, @@ -9868,15 +9868,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "44e398b9aaf534cc0986f163c0294a4b5bb99c793cfe4d500b62144272feee5a", - "messages_hash": "f673c0621ae9856e82acd75af80ad3b82f4a668857c06d6dc8b567daf0812620", + "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", + "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", "transaction_count": 1, - "txlist_hash": "372a21a27d05f05685d7b051aec3355edeab9dfb2ad75ff0d79caef8ad92aca1", - "block_time": 1729678732 + "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", + "block_time": 1729682844 }, "tx_hash": null, "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 549, @@ -9889,12 +9889,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62 }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 548, @@ -9910,12 +9910,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 1500000000, "tx_index": 62, - "utxo": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", - "utxo_address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", - "block_time": 1729678732, + "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -9925,9 +9925,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 553, @@ -9939,16 +9939,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -9958,9 +9958,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 557, @@ -9974,14 +9974,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "memo": null, "quantity": 10000, - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "status": "valid", - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", "tx_index": 55, - "block_time": 1729678697, + "block_time": 1729682809, "asset_info": { "divisible": true, "asset_longname": null, @@ -9991,9 +9991,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "6c6f0838c55c48bce20b530de8625898498c9f70566befbd4d27e222dc2ab832", + "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", "block_index": 189, - "block_time": 1729678697 + "block_time": 1729682809 } ], "next_cursor": null, @@ -10007,15 +10007,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "tx_index": 56, - "block_time": 1729678701, + "block_time": 1729682813, "asset_info": { "divisible": true, "asset_longname": null, @@ -10025,9 +10025,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "cbb95707918cc35347d2a4a694b9b59afff6e8d7fd5a76515d5956a83ac37e37", + "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", "block_index": 190, - "block_time": 1729678701 + "block_time": 1729682813 } ], "next_cursor": 509, @@ -10050,20 +10050,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "status": "valid", - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "tx_index": 60, - "block_time": 1729678718, + "block_time": 1729682830, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "a08258a8f911acfbe9868b84e6065bfb5b9c8832cf0a42469c399c28de9b8468", + "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", "block_index": 194, - "block_time": 1729678718 + "block_time": 1729682830 } ], "next_cursor": null, @@ -10080,15 +10080,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "tx_index": 41, - "block_time": 1729678554, + "block_time": 1729682653, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10102,9 +10102,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "d92e761b0229853773544ebe8becd4e922d5ebd65c8f5fd2858fca6ff2b335a1", + "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", "block_index": 154, - "block_time": 1729678554 + "block_time": 1729682653 } ], "next_cursor": null, @@ -10125,11 +10125,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729678584 + "block_time": 1729682693 }, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "block_index": 161, - "block_time": 1729678584 + "block_time": 1729682693 } ], "next_cursor": 381, @@ -10152,22 +10152,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", "transfer": false, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "tx_index": 48, - "block_time": 1729678584, + "block_time": 1729682693, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "5426b4b327ddc5e18fbf714809751b132dcf21130952dee31a77a77df65e7e28", + "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", "block_index": 161, - "block_time": 1729678584 + "block_time": 1729682693 } ], "next_cursor": 388, @@ -10182,12 +10182,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qhgtfus00nrrkavdkk868grls0atk7303rsmpgz", + "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "tx_index": 61, - "block_time": 1729678723, + "block_time": 1729682834, "asset_info": { "divisible": true, "asset_longname": null, @@ -10197,9 +10197,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "939b8037f78680823d76cfb00464ffccd41c563b26e5ab9c81b65f3be182fa79", + "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", "block_index": 195, - "block_time": 1729678723 + "block_time": 1729682834 } ], "next_cursor": 157, @@ -10224,11 +10224,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "open", - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "tx_index": 59, - "block_time": 1729678714, + "block_time": 1729682826, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10252,9 +10252,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b35e2817be33dbc17c064b53bb44d70c2307385c414a0470110022768afdb2d3", + "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", "block_index": 193, - "block_time": 1729678714 + "block_time": 1729682826 } ], "next_cursor": 516, @@ -10272,20 +10272,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9", + "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", "tx0_index": 51, - "tx1_address": "bcrt1qd78m2c252pawdszjrvnl2tdk6jkfz6xkugezh0", + "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "tx1_index": 54, - "block_time": 1729678693, + "block_time": 1729682804, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10304,9 +10304,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6280dceb08d2946cd197a1ab504d69acad6870a362ffd6a3e549877fac57c4ad", + "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", "block_index": 188, - "block_time": 1729678693 + "block_time": 1729682804 } ], "next_cursor": 475, @@ -10319,11 +10319,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694" + "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f" }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 } ], "next_cursor": 490, @@ -10336,11 +10336,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682" + "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c" }, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_time": 1729678688 + "block_time": 1729682800 } ], "next_cursor": null, @@ -10352,13 +10352,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", + "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", "status": "completed" }, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_time": 1729678688 + "block_time": 1729682800 } ], "next_cursor": 454, @@ -10372,18 +10372,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "order_match_id": "6aa887269859bf9f51ef34e5449e7b4e0c24f69b18e835da3319e90a1dab15f9_70b6a5495d5eeabb135b653e6690fc5ebda89bc89470b07bc41c596e2b442682", - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "status": "valid", - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "tx_index": 53, - "block_time": 1729678688, + "block_time": 1729682800, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "2f9608ddf202b6e836760e45120de9a537b810ea6d374bd9e855ad588903f3f6", + "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", "block_index": 187, - "block_time": 1729678688 + "block_time": 1729682800 } ], "next_cursor": null, @@ -10396,16 +10396,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "b288030deb0479b45bad2397520ce49a262e9bae6bc71790e970f5afb6ad5694", - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "tx_index": 58, - "block_time": 1729678710 + "block_time": 1729682822 }, - "tx_hash": "b109726597ed226f2cfbc0ca2503a28bc04ff1c6d4602f26358f22e317a282d2", + "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", "block_index": 192, - "block_time": 1729678710 + "block_time": 1729682822 } ], "next_cursor": null, @@ -10418,13 +10418,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "block_time": 1729678609 + "order_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "block_time": 1729682719 }, "tx_hash": null, "block_index": 184, - "block_time": 1729678609 + "block_time": 1729682719 } ], "next_cursor": 460, @@ -10437,14 +10437,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "512c41e9d2da2d9931a226e7c94cd9f17eff51d654f280db7f5f862fb641cd83_976d82cc956e809a72a116df73dc499443126f8627384cb549e41e40d22a0ac2", - "tx0_address": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "tx1_address": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", - "block_time": 1729678609 + "order_match_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "block_time": 1729682719 }, "tx_hash": null, "block_index": 184, - "block_time": 1729678609 + "block_time": 1729682719 } ], "next_cursor": null, @@ -10462,14 +10462,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "origin": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "satoshirate": 1, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "tx_index": 33, - "block_time": 1729678510, + "block_time": 1729682619, "asset_info": { "divisible": true, "asset_longname": null, @@ -10482,9 +10482,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "block_index": 146, - "block_time": 1729678510 + "block_time": 1729682619 } ], "next_cursor": 254, @@ -10499,9 +10499,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": 0, - "tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", + "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", "asset_info": { "divisible": true, "asset_longname": null, @@ -10511,9 +10511,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 302, @@ -10527,13 +10527,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mvrxbiwo2U6ZKf3eA4GDSACU4z9vxckBvH", + "destination": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", "dispense_quantity": 10, - "dispenser_tx_hash": "4f65ec815eb8503f641c1b32fd7200c018ac4990bbd5affa22cc3e43f812f990", - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", - "tx_hash": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", + "dispenser_tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx_hash": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", "tx_index": 31, - "block_time": 1729678501, + "block_time": 1729682610, "asset_info": { "divisible": true, "asset_longname": null, @@ -10543,9 +10543,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "c1f7682ed0bf438748b5e58bc41218ba0d2f3090087b6e59f9880f381fd00965", + "tx_hash": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", "block_index": 144, - "block_time": 1729678501 + "block_time": 1729682610 } ], "next_cursor": null, @@ -10560,14 +10560,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qwwwecfhxaeg6y2k73cm52gmvxf43n2x3d5cxqg", + "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9c43d8eaa781f7615b9f89c28538e1ff9aa420286b69b468be62bd2800f71a13", - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -10578,9 +10578,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 280, @@ -10595,19 +10595,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qlv7c6pt3f88v0cuppk8ahss89fhezx2zfdh5pz", + "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "tx_index": 25, "value": 66600.0, - "block_time": 1729678476, + "block_time": 1729682576, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "fcf0e67de60ad5f640f4bc3fcd4b344951d25980df24e0c663a35b6f3028d535", + "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", "block_index": 138, - "block_time": 1729678476 + "block_time": 1729682576 } ], "next_cursor": 213, @@ -10638,12 +10638,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "start_block": 0, "status": "open", - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "tx_index": 42, - "block_time": 1729678558, + "block_time": 1729682667, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10651,9 +10651,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "6c43c69a894170a6adf08f91ea1b945c75fb0b97389c4380db93b4c3f4904d22", + "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", "block_index": 155, - "block_time": 1729678558 + "block_time": 1729682667 } ], "next_cursor": 196, @@ -10666,11 +10666,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d7c88a759301d3995067a2d7972ecc5f96f758e7218a9c0dab2ca911fd0b2052" + "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d" }, "tx_hash": null, "block_index": 130, - "block_time": 1729678442 + "block_time": 1729682542 } ], "next_cursor": 110, @@ -10686,17 +10686,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "d39a912a33c29650378cfd7132dc801b7fd3dde704c26d8080bea64e8d91bab8", + "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", "paid_quantity": 34, - "source": "bcrt1qd4v4d7p49s0lzj45p2643syvxhm8au6dl5vfed", + "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", "status": "valid", - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "tx_index": 23, - "block_time": 1729678468, + "block_time": 1729682567, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, @@ -10704,9 +10704,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "bde74d343e24c1b71d09e2cd5ff4408d73cac8f4d8ac27f6a67016f8a523ebc2", + "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", "block_index": 136, - "block_time": 1729678468 + "block_time": 1729682567 } ], "next_cursor": 190, @@ -10720,28 +10720,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102:1", + "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "status": "valid", - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "tx_index": 39, - "block_time": 1729678546, + "block_time": 1729682644, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6d88f98b5058ba837b80843db7935d2d8c276116aa936054d79c9b7f15ee2102", + "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", "block_index": 152, - "block_time": 1729678546 + "block_time": 1729682644 } ], "next_cursor": 296, @@ -10755,28 +10755,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qk80n6hmktfdun8ev977tyn2epdem3wcy2r8w5c", + "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "09767658035594117f834ea27f1beb01cc09dd8110599f5f693f8ba466e7815a:0", + "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", "status": "valid", - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "tx_index": 38, - "block_time": 1729678541, + "block_time": 1729682640, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q6h0mufaw9xw9lk2e6n2rrvn9ev59lyk6p972qp", + "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "26f50974ec5579c06a5153759717666457fcbbd3100048cbc290f48729559201", + "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", "block_index": 151, - "block_time": 1729678541 + "block_time": 1729682640 } ], "next_cursor": null, @@ -10790,14 +10790,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd:0", + "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", "msg_index": 1, "quantity": 1500000000, - "source": "373a00034a6e6614d2204eeb34c99c709b45ff72bee18507929c939e0f9b6b7d:1", + "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", "status": "valid", - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "tx_index": 62, - "block_time": 1729678732, + "block_time": 1729682844, "asset_info": { "divisible": true, "asset_longname": null, @@ -10807,9 +10807,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "0355e0f4c8cfc8b4d66c65e27ddf79ef066f11206067b8bcdc5b8661f9c323fd", + "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", "block_index": 196, - "block_time": 1729678732 + "block_time": 1729682844 } ], "next_cursor": 555, @@ -10824,17 +10824,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzxl3ftuwvlgjj2ep30rldy308tufkwrg7kegvy", + "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", "status": "valid", - "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", + "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", "tx_index": 9, - "block_time": 1729678403, + "block_time": 1729682503, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "5d1f367477d5d56efd5f818b68060299e6f31203fdc9047c374b198bb6a68678", + "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", "block_index": 121, - "block_time": 1729678403 + "block_time": 1729682503 } ], "next_cursor": 65, diff --git a/dredd.yml b/dredd.yml index 6b1c5c48e6..dbebfba882 100644 --- a/dredd.yml +++ b/dredd.yml @@ -88,6 +88,7 @@ only: - Compose > Compose Attach > Compose Attach - Compose > Compose Detach > Compose Detach - Compose > Compose Movetoutxo > Compose Movetoutxo +- Compose > Get Attach Estimate Xcp Fee > Get Attach Estimate Xcp Fee - Assets > Get Valid Assets > Get Valid Assets - Assets > Get Asset > Get Asset - Assets > Get Asset Balances > Get Asset Balances diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index 7aa39e9d12..7f465408d1 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -25,6 +25,7 @@ Backwards-incompatible change - Add the following routes: * `/v2/blocks//fairminters` * `/v2/blocks//fairmints` + * `/v2/compose/attach/estimatexcpfees` - Add `status` argument for Fairminters routes - Made `/blocks/last` faster by adding an index to the `ledger_hash` field - `/v2/addresses/
/sweeps` now also searches by the `destination` field From d1879a927cc8c2897e82c3748b2ba01ddf89b0ad Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 13:00:05 +0000 Subject: [PATCH 44/71] Raise an error on fairmint compose when the fairminter is free and the quantity is not zero --- .../counterpartycore/lib/messages/fairmint.py | 5 +++++ .../test/fixtures/contract_vectors/fairmint.py | 8 ++++++++ release-notes/release-notes-v10.5.1.md | 1 + 3 files changed, 14 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/messages/fairmint.py b/counterparty-core/counterpartycore/lib/messages/fairmint.py index 17bf15effc..64caea02b4 100644 --- a/counterparty-core/counterpartycore/lib/messages/fairmint.py +++ b/counterparty-core/counterpartycore/lib/messages/fairmint.py @@ -110,6 +110,11 @@ def compose( if len(problems) > 0: raise exceptions.ComposeError(problems) + if quantity != 0: + fairminter = ledger.get_fairminter_by_asset(db, asset) + if fairminter["price"] == 0: + raise exceptions.ComposeError("quantity is not allowed for free fairminters") + # create message data = struct.pack(config.SHORT_TXTYPE_FORMAT, ID) # to optimize the data size (avoiding fixed sizes per parameter) we use a simple diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairmint.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairmint.py index a725e3e4f6..1ac0c39587 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairmint.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/fairmint.py @@ -66,6 +66,14 @@ ), "error": (exceptions.ComposeError, ["asset supply quantity exceeds hard cap"]), }, + { + "in": ( + ADDR[1], # source + "FREEFAIRMIN", # asset + 35, # quantity + ), + "error": (exceptions.ComposeError, "quantity is not allowed for free fairminters"), + }, ], "unpack": [ {"in": (b"FREEFAIRMIN|0", False), "out": ("FREEFAIRMIN", 0)}, diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index 7f465408d1..d3030b4870 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -30,6 +30,7 @@ Backwards-incompatible change - Made `/blocks/last` faster by adding an index to the `ledger_hash` field - `/v2/addresses/
/sweeps` now also searches by the `destination` field - Add `asset_events` argument for Issuances routes +- Raise an error on fairmint compose when the fairminter is free and the quantity is not zero ## CLI From f45d9cc6f959091f82dcba7167d1ff26724d4fea Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 13:12:30 +0000 Subject: [PATCH 45/71] Tweak reparse message --- counterparty-core/counterpartycore/lib/check.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 6f7c8c70cf..65a0fd89ba 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -1062,6 +1062,9 @@ def database_version(db): # 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}. " + if version_pre_release == "xxxx": + message = "`VERSION_STRING` not found in dataase. " + else: + 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 e667a0b2f6d84a83fdd76437f103b0501fbe6070 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 13:35:57 +0000 Subject: [PATCH 46/71] Don't run reparse if unnecessary --- counterparty-core/counterpartycore/lib/blocks.py | 3 +++ release-notes/release-notes-v10.5.1.md | 1 + 2 files changed, 4 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/blocks.py b/counterparty-core/counterpartycore/lib/blocks.py index 6439867a20..5889462d0c 100644 --- a/counterparty-core/counterpartycore/lib/blocks.py +++ b/counterparty-core/counterpartycore/lib/blocks.py @@ -1103,6 +1103,9 @@ def generate_progression_message( def reparse(db, block_index=0): + if block_index > util.CURRENT_BLOCK_INDEX: + logger.debug("Block index is higher than current block index. No need to reparse.") + return cursor = db.cursor() # clean all tables except assets' blocks', 'transaction_outputs' and 'transactions' with log.Spinner(f"Rolling database back to Block {block_index}..."): diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index d3030b4870..8883a4fd6c 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -15,6 +15,7 @@ Backwards-incompatible change ## Bugfixes - Correctly catch invalid pubkey in compose API +- Don't run reparse if unnecessary ## Codebase From 39739b0a6f3209e7d09979d9203eecd117c7dbe5 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 18:18:38 +0000 Subject: [PATCH 47/71] Fix 'message_data' when retrieving information about fairminter or fairmint transactions --- apiary.apib | 3655 +++++++++-------- .../counterpartycore/lib/api/compose.py | 4 +- .../test/regtest/apidoc/apicache.json | 3317 +++++++-------- release-notes/release-notes-v10.5.1.md | 1 + 4 files changed, 3496 insertions(+), 3481 deletions(-) diff --git a/apiary.apib b/apiary.apib index b08017b857..4397785a09 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-23 11:27:41.215477. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-23 18:14:10.882265. 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": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", "block_index": 196, - "block_time": 1729682844, + "block_time": 1729707233, "difficulty": 545259519, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8" + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598" }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", "block_index": 196, - "block_time": 1729682844, + "block_time": 1729707233, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "fee": 0, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551: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": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "out_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "block_time": 1729682844, + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "block_time": 1729707233, "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": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "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": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "memo": null, "quantity": 10000, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "status": "valid", - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", "tx_index": 55, - "block_time": 1729682809, + "block_time": 1729707189, "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": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", "block_index": 189, - "block_time": 1729682809 + "block_time": 1729707189 } ], "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": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "tx_index": 56, - "block_time": 1729682813, + "block_time": 1729707194, "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": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "block_time": 1729682813 + "block_time": 1729707194 } ], "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": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "status": "valid", - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "block_time": 1729682830 + "block_time": 1729707220 } ], "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": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "tx_index": 41, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "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": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "block_time": 1729682653 + "block_time": 1729707040 } ], "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": 1729682693 + "block_time": 1729707090 }, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "block_index": 161, - "block_time": 1729682693 + "block_time": 1729707090 } ], "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": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", "transfer": false, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "tx_index": 48, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "block_index": 161, - "block_time": 1729682693 + "block_time": 1729707090 } ], "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": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "tx_index": 61, - "block_time": 1729682834, + "block_time": 1729707224, "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": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "block_index": 195, - "block_time": 1729682834 + "block_time": 1729707224 } ], "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": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "open", - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, - "block_time": 1729682826, + "block_time": 1729707215, "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": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 } ], "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": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "tx0_index": 51, - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx1_index": 54, - "block_time": 1729682804, + "block_time": 1729707185, "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": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "block_index": 188, - "block_time": 1729682804 + "block_time": 1729707185 } ], "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": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f" + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40" }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 } ], "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": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c" + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d" }, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_time": 1729682800 + "block_time": 1729707181 } ], "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": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "status": "completed" }, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_time": 1729682800 + "block_time": 1729707181 } ], "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": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "status": "valid", - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "tx_index": 53, - "block_time": 1729682800, + "block_time": 1729707181, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_time": 1729682800 + "block_time": 1729707181 } ], "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": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "tx_index": 58, - "block_time": 1729682822 + "block_time": 1729707202 }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 } ], "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": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "block_time": 1729682719 + "order_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "block_time": 1729707105 }, "tx_hash": null, "block_index": 184, - "block_time": 1729682719 + "block_time": 1729707105 } ], "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": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "block_time": 1729682719 + "order_match_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "block_time": 1729707105 }, "tx_hash": null, "block_index": 184, - "block_time": 1729682719 + "block_time": 1729707105 } ], "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": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "satoshirate": 1, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "tx_index": 33, - "block_time": 1729682619, + "block_time": 1729707005, "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": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "block_index": 146, - "block_time": 1729682619 + "block_time": 1729707005 } ], "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": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "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": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", + "destination": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", "dispense_quantity": 10, - "dispenser_tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "tx_hash": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", + "dispenser_tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx_hash": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", "tx_index": 31, - "block_time": 1729682610, + "block_time": 1729706987, "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": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", + "tx_hash": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", "block_index": 144, - "block_time": 1729682610 + "block_time": 1729706987 } ], "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": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "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": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "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": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "tx_index": 25, "value": 66600.0, - "block_time": 1729682576, + "block_time": 1729706961, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "block_index": 138, - "block_time": 1729682576 + "block_time": 1729706961 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "start_block": 0, "status": "open", - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "block_index": 155, - "block_time": 1729682667 + "block_time": 1729707044 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d" + "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244" }, "tx_hash": null, "block_index": 130, - "block_time": 1729682542 + "block_time": 1729706927 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "paid_quantity": 34, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "status": "valid", - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "block_index": 136, - "block_time": 1729682567 + "block_time": 1729706952 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "tx_index": 39, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "block_index": 152, - "block_time": 1729682644 + "block_time": 1729707031 } ], "next_cursor": 296, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", + "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", "status": "valid", - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "tx_index": 38, - "block_time": 1729682640, + "block_time": 1729707027, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "block_index": 151, - "block_time": 1729682640 + "block_time": 1729707027 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 196, - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "msg_index": 1, "quantity": 1500000000, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "status": "valid", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 555, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", + "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", "status": "valid", - "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", + "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", "tx_index": 9, - "block_time": 1729682503, + "block_time": 1729706888, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", + "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", "block_index": 121, - "block_time": 1729682503 + "block_time": 1729706888 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", "difficulty": 545259519, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", - "block_time": 1729682834, - "previous_block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", + "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_time": 1729707224, + "previous_block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", "difficulty": 545259519, - "ledger_hash": "43e8f0a04c8a827e1a7e252f08793df6fcd648b14cbd6848c1222d700483f013", - "txlist_hash": "dc1a0a29cb30593fa918c114b56f5d538e516f853dd43ac5a492ace4820b5203", - "messages_hash": "f4bec68c1c55f8a9f347cd88b511e669af5220d46247f11c7b4f7ed360c42e94", + "ledger_hash": "61d7662817cf15d3d892545de3870004d4191aeccba1ace111995a818f7566e2", + "txlist_hash": "6e6e7b7a088ebff6b433713b6a665e9d1bf3a99b8dc72f950796afcbd898b8db", + "messages_hash": "471896ab6baf5db07797d7f2ded0f36290ba5e092111f02cdce8f2d9900ded11", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", - "block_time": 1729682830, - "previous_block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", + "block_time": 1729707220, + "previous_block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", "difficulty": 545259519, - "ledger_hash": "4b133b746cd856aebcce555e50aaba2f6d1d9be21da74ac968e8460c0d20d80d", - "txlist_hash": "0b979d6cc00b2cdf530ba20965941bbbe8a8b8a2a29bed285e71dc0ae7ef4d46", - "messages_hash": "d710116f570777e25f57698522a7912ad2b60d407964af35d450ca621c73df30", + "ledger_hash": "934402e63ccfe7db85edfbdda51e806474fef59c7a5a41c1d1d1d76817a571da", + "txlist_hash": "b05b7c0fcc05b6960ca55c171696399ca82482c1698614239bb7771312ddb1bd", + "messages_hash": "d3f105834888b1910869e34cc27428bdfaa0e29f1625326b13067f4b7c61d284", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", - "block_time": 1729682826, - "previous_block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_time": 1729707215, + "previous_block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", "difficulty": 545259519, - "ledger_hash": "0ba322c20d9896dd65ac2dcd9ea1c444a35c3230f6a1e23c2e39e4f0ac116546", - "txlist_hash": "502b59090ef1f49257b49b9c006f3238e7787ba360ce07ade9cc41403dc6d31f", - "messages_hash": "f054c2e82c5cff4288ba911077591f38c37ce24ecbc7e1d7ee5c361d2c3c03a5", + "ledger_hash": "1d565434cde1ae1c18bce1a7d81b92ca59c41d3adfbfc8fad4204d89025a276b", + "txlist_hash": "07f3b8f789431d9fbba8309e7df2a6c19739bbff0c5485ec6efbaf9002ba56bb", + "messages_hash": "c38e0cc08d1dd4a4a8bab2ac39a0aa0c3dcb13de0cf0d340059371dd5bce4c24", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", - "block_time": 1729682822, - "previous_block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", + "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_time": 1729707202, + "previous_block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", "difficulty": 545259519, - "ledger_hash": "5403c4099c4a05514d697a5a8fd014092cac635c4227043d0728c58e298b9cf5", - "txlist_hash": "7725cc03afd6655ea1149cb6f1a47685ac0cb99d933f939cbc84319469152d32", - "messages_hash": "832cf6d8d53a118d96ef968ba60a968977dd8dc4a6d5b4ba44759b36fab99074", + "ledger_hash": "59c5b68a2a15d6dc351dd4f6b233f9b0890eba12abec79a454b106acd1ede8fd", + "txlist_hash": "bde702719a9df6e5038c4f540c7d2e922d64ed39efc1a70992d7a08aae7d6d29", + "messages_hash": "6ad1b388c7c1793be98b6be7c65090da3462ffe35c33aa7a6fda18139b4c3f83", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", "difficulty": 545259519, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad` (str, required) - The index of the block to return + + block_hash: `7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", "difficulty": 545259519, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 561, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 560, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" } ], "next_cursor": 558, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 557, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 554, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 196, - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "object_id": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "block_index": 184, "confirmed": true, - "block_time": 1729682719 + "block_time": 1729707105 }, { "type": "order", - "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, "confirmed": true, - "block_time": 1729682719 + "block_time": 1729707105 }, { "type": "order_match", - "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "block_index": 184, "confirmed": true, - "block_time": 1729682719 + "block_time": 1729707105 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "status": "valid", "confirmed": true, - "block_time": 1729682822 + "block_time": 1729707202 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "block_index": 195, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729682834, + "block_time": 1729707224, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,14 +2329,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -2351,7 +2351,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2385,10 +2385,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2396,7 +2396,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2409,10 +2409,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2420,11 +2420,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2462,27 +2462,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2497,7 +2497,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2538,16 +2538,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -2586,10 +2586,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2614,7 +2614,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2651,22 +2651,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2705,17 +2705,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "block_index": 138, - "block_hash": "25b41c78a1be0d54aeacb4fc1458b97bdc0385669f075166fe0a92980b0e058e", - "block_time": 1729682576, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "5237bc84dee9b3646f78af5ae6391524e7a1fc0f39590fcec01cfe46d2b01534", + "block_time": 1729706961, + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441:1", + "utxos_info": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2740,25 +2740,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_hash": "772ab4c2ade86d700d4d2c7dc40911ae529a206307c0e20d003b8812813261c0", - "block_time": 1729682800, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "738f28c86aa369eed0bfc906eb5fcfa866238b9dc276bf286ef4ccd562dc7113", + "block_time": 1729707181, + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "btc_amount": 2000, "fee": 10000, - "data": "0b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "data": "0bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b37f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "supported": true, - "utxos_info": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c:0", + "utxos_info": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "status": "valid" } }, @@ -2773,23 +2773,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", - "block_time": 1729682822, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_time": 1729707202, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "supported": true, - "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", + "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "status": "valid" } }, @@ -2804,17 +2804,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "block_index": 195, - "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", - "block_time": 1729682834, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_time": 1729707224, + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469:1", + "utxos_info": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2844,17 +2844,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 33, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "block_index": 146, - "block_hash": "30b62c93ea37e352d305ad36d315ae059eb6b7417e745ceea45a82fe883e4f54", - "block_time": 1729682619, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "431b129b3b1e6e122376d40ac120f955cffce2abaaa5f4eff18c246edae230ab", + "block_time": 1729707005, + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100804f05c52b2783836407de9a1525fede28bf247496", + "data": "0c000000000000000100000000000000010000000000002710000000000000000100804ea467f94eaca52acac0ee04c5fd37938a96af48", "supported": true, - "utxos_info": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b:1", + "utxos_info": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2866,7 +2866,7 @@ Here is sample API output for each of these transactions: "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": "valid", "asset_info": { "divisible": true, @@ -2890,17 +2890,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2920,17 +2920,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "block_hash": "1054609704543a204a4b76a5c1c77d4987e2f51055fe52b307564a4c4b997381", - "block_time": 1729682653, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "767213c5ba3c9679f8784ca2c376ac0ad989ab751ad128db4a82c630e61c361b", + "block_time": 1729707040, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc:1", + "utxos_info": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2943,7 +2943,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2968,17 +2968,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "block_index": 161, - "block_hash": "2d3357b08e0ff468fb0851f844622ebaee76582a641db5f2be7c43f463a5c6d9", - "block_time": 1729682693, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "5de05d765b9d7bb29bc406a82a7976b8b288627e03e87ad20df1013af737c214", + "block_time": 1729707090, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6:1", + "utxos_info": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3010,17 +3010,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", - "block_time": 1729682826, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_time": 1729707215, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", + "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3063,17 +3063,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", "block_index": 189, - "block_hash": "154ccae9703e170496fbc958d27f1817d36af6ed4aa04ffdb0e7561df0ce3b74", - "block_time": 1729682809, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "block_hash": "254c249865f8935fff88cc3e4c32fe5d5dc045f4c72848a7e180d315845121eb", + "block_time": 1729707189, + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803d3b0471e07117073921fa17a6ef90013da3ceea", + "data": "0200000000000000010000000000002710802e97e2e1563653c83bf6d71e62a78132245b4d46", "supported": true, - "utxos_info": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139:1", + "utxos_info": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3081,7 +3081,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "memo": null, "asset_info": { "divisible": true, @@ -3104,17 +3104,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", - "block_time": 1729682813, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", + "block_time": 1729707194, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", + "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3122,14 +3122,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -3137,7 +3137,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3163,23 +3163,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", - "block_time": 1729682830, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", + "block_time": 1729707220, + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803d3b0471e07117073921fa17a6ef90013da3ceea017377656570206d7920617373657473", + "data": "04802e97e2e1563653c83bf6d71e62a78132245b4d46017377656570206d7920617373657473", "supported": true, - "utxos_info": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54:1", + "utxos_info": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "memo": "sweep my assets" } @@ -3212,17 +3212,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3235,17 +3235,17 @@ Returns the list of the last ten transactions }, { "tx_index": 61, - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "block_index": 195, - "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", - "block_time": 1729682834, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_time": 1729707224, + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469:1", + "utxos_info": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03013300ffffffff0200f2052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee20000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03015300ffffffff0200f2052a01000000160014550b6ff425fadac2efe66d0817448876cd5e40770000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (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. @@ -3303,7 +3303,7 @@ Returns Counterparty information from a raw transaction in hex format. { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "013300", + "script_sig": "015300", "sequence": 4294967295, "coinbase": true } @@ -3311,7 +3311,7 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 5000000000, - "script_pub_key": "00148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2" + "script_pub_key": "0014550b6ff425fadac2efe66d0817448876cd5e4077" }, { "value": 0, @@ -3322,8 +3322,8 @@ Returns Counterparty information from a raw transaction in hex format. "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f", - "tx_id": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f" + "tx_hash": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c", + "tx_id": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c" } } } @@ -3334,7 +3334,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9` (str, required) - Transaction hash + + tx_hash: `f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52` (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. @@ -3345,18 +3345,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "291f37f0d68ee13192bc945fa63e0346b75cfe0f8b03d7813b01be3cdccdf9df", + "hash": "a427020b568e7a81e34d35e0881b1908445542bc1508a13e7332e7bba8d4e4d5", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3366,20 +3366,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e7c88a2da47e81d18491abe8640475e2c44399db4b3ab4c98d5889ae2ce7ea6c9cfc89bc544182c369a8e0908fea0" + "script_pub_key": "6a2eb63a752647ee27c323fe7dcad1af7281f8bf1c18901ae8b6ac48ccc1ac4c9160be27dd740af8d04e9fce006605d7" }, { "value": 4999955000, - "script_pub_key": "00143d3b0471e07117073921fa17a6ef90013da3ceea" + "script_pub_key": "00142e97e2e1563653c83bf6d71e62a78132245b4d46" } ], "vtxinwit": [ - "30440220610233430eea2dfe24bcb47a9bbf6bfd7d81e79936110c05b3888b785343fe9e02206f12f9219be34d7da8d45cebf199b1edde1e0fd727893ec160ad889b5ba74dea01", - "02c79d13cefda6ec9da4b9064fab4131c35057629a8d92b01e560b44713c7f2abd" + "304402201f2c52d6ead64dff96d04bc1739c70f38f8413aeda25673209a9e5a1f351575402206f9f4fe86d85fa15cbbc2416288fb07c3cf2263ed7070dc8a58978fcdd67beec01", + "0211063470b3527db73bd0c05e137fbb770ff8d79dc286942eacf4ea630e87e6bc" ], "lock_time": 0, - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", - "tx_id": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9" + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_id": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3387,7 +3387,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -3448,17 +3448,17 @@ Returns a transaction by its index. { "result": { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3477,7 +3477,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (str, required) - The hash of the transaction + + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (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. @@ -3489,17 +3489,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3542,12 +3542,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 561, @@ -3556,14 +3556,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3574,9 +3574,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 560, @@ -3585,9 +3585,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -3597,24 +3597,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3624,9 +3624,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 558, @@ -3634,14 +3634,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "msg_index": 1, "quantity": 1500000000, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "status": "valid", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3651,9 +3651,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 557, @@ -3666,7 +3666,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (str, required) - The hash of the transaction to return + + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (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 @@ -3690,12 +3690,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 561, @@ -3704,14 +3704,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3722,9 +3722,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 560, @@ -3733,9 +3733,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -3745,24 +3745,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3772,9 +3772,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 558, @@ -3782,14 +3782,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 196, - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "msg_index": 1, "quantity": 1500000000, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "status": "valid", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3799,9 +3799,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 557, @@ -3814,7 +3814,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (str, required) - The hash of the transaction to return + + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (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 @@ -3833,10 +3833,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3844,7 +3844,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3857,10 +3857,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3868,11 +3868,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -3890,7 +3890,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (str, required) - The hash of the transaction to return + + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (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 @@ -3910,27 +3910,27 @@ Returns the dispenses of a block { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3945,7 +3945,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -3989,16 +3989,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -4008,9 +4008,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 557, @@ -4020,12 +4020,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -4035,9 +4035,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 554, @@ -4047,24 +4047,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": null, @@ -4077,7 +4077,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (str, required) - The hash of the transaction to return + + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (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` @@ -4099,16 +4099,16 @@ Returns the events of a transaction "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -4118,9 +4118,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 557, @@ -4130,12 +4130,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -4145,9 +4145,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 554, @@ -4157,24 +4157,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": null, @@ -4189,7 +4189,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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 @@ -4213,7 +4213,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4223,7 +4223,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4234,7 +4234,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4244,7 +4244,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4265,7 +4265,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4286,7 +4286,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4307,7 +4307,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4324,7 +4324,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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 @@ -4343,17 +4343,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", - "block_time": 1729682826, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_time": 1729707215, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", + "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4389,23 +4389,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", - "block_time": 1729682822, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_time": 1729707202, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "supported": true, - "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", + "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "status": "valid" } }, @@ -4413,17 +4413,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 191, - "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", - "block_time": 1729682817, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", + "block_time": 1729707198, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", + "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4459,17 +4459,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", - "block_time": 1729682813, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", + "block_time": 1729707194, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", + "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4477,14 +4477,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4492,7 +4492,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -4511,25 +4511,25 @@ Returns the transactions of a list of addresses }, { "tx_index": 53, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_hash": "772ab4c2ade86d700d4d2c7dc40911ae529a206307c0e20d003b8812813261c0", - "block_time": 1729682800, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "738f28c86aa369eed0bfc906eb5fcfa866238b9dc276bf286ef4ccd562dc7113", + "block_time": 1729707181, + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "btc_amount": 2000, "fee": 10000, - "data": "0b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "data": "0bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b37f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "supported": true, - "utxos_info": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c:0", + "utxos_info": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "status": "valid" } }, @@ -4546,7 +4546,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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 @@ -4582,11 +4582,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "open", - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4610,24 +4610,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "block_index": 193, - "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729682826, + "block_time": 1729707215, "asset_info": { "divisible": true, "asset_longname": null, @@ -4637,25 +4637,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", "block_index": 193, - "block_time": 1729682826, + "block_time": 1729707215, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, - "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", + "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4687,40 +4687,40 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "tx_index": 58, - "block_time": 1729682822 + "block_time": 1729707202 }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729682822, + "block_time": 1729707202, "asset_info": { "divisible": true, "asset_longname": null, @@ -4730,9 +4730,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 } ], "next_cursor": 520, @@ -4745,7 +4745,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe,bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r,bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr` (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 @@ -4761,17 +4761,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "quantity": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, "asset_info": { "divisible": true, @@ -4782,22 +4782,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -4807,22 +4807,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 196, - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -4832,30 +4832,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729682848.4038758, + "block_time": 1729707238.1041224, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "destination": "", "fee": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, - "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", + "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -4869,7 +4869,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, @@ -4882,7 +4882,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -4902,7 +4902,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4910,14 +4910,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4925,14 +4925,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4947,7 +4947,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -4955,7 +4955,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4972,7 +4972,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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` @@ -4985,7 +4985,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5010,7 +5010,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5060,16 +5060,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "asset_info": { "divisible": true, "asset_longname": null, @@ -5081,16 +5081,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "event": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "asset_info": { "divisible": true, "asset_longname": null, @@ -5102,20 +5102,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "event": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5123,20 +5123,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", + "event": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682681, + "block_time": 1729707057, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5148,16 +5148,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "event": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "tx_index": 39, - "utxo": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", - "utxo_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "utxo": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "utxo_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "confirmed": true, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5174,7 +5174,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5213,16 +5213,16 @@ Returns the debits of an address "result": [ { "block_index": 193, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "asset_info": { "divisible": true, "asset_longname": null, @@ -5234,16 +5234,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682817, + "block_time": 1729707198, "asset_info": { "divisible": true, "asset_longname": null, @@ -5255,16 +5255,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -5276,20 +5276,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5297,16 +5297,16 @@ Returns the debits of an address }, { "block_index": 185, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "event": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682791, + "block_time": 1729707172, "asset_info": { "divisible": true, "asset_longname": null, @@ -5327,7 +5327,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address of the feed + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5362,7 +5362,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -5381,9 +5381,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", + "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", "block_index": 137, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5391,7 +5391,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682571, + "block_time": 1729706957, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5405,7 +5405,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -5424,14 +5424,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "5a5ef08dcd1fc68de370600948dc5d22c1c77554d6449db42678a1cdf3a598d4", + "tx_hash": "649c26715a5677a8a818a199c2b672fca8d541b44b4d0cc9163d0f87ddfc2173", "block_index": 112, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729682467, + "block_time": 1729706850, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5446,7 +5446,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -5465,10 +5465,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5476,7 +5476,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -5489,10 +5489,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5500,11 +5500,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5513,10 +5513,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5524,11 +5524,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5537,10 +5537,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "block_index": 152, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5548,11 +5548,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5561,10 +5561,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", + "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", "block_index": 149, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5572,11 +5572,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682632, + "block_time": 1729707018, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5594,7 +5594,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65` (str, required) - The address to return + + address: `bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr` (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 @@ -5613,10 +5613,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "block_index": 151, - "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", - "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", + "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5624,11 +5624,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682640, + "block_time": 1729707027, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5646,7 +5646,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 +5666,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5677,11 +5677,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5690,10 +5690,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5701,11 +5701,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5714,10 +5714,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "block_index": 152, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5725,11 +5725,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5738,10 +5738,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", + "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", "block_index": 149, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5749,11 +5749,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682632, + "block_time": 1729707018, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5771,7 +5771,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65` (str, required) - The address to return + + address: `bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr` (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` @@ -5791,10 +5791,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "block_index": 151, - "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", - "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", + "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5802,11 +5802,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682640, + "block_time": 1729707027, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5824,7 +5824,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5853,9 +5853,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5864,7 +5864,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5874,7 +5874,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -5899,7 +5899,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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` @@ -5912,9 +5912,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5923,7 +5923,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5933,7 +5933,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -5955,7 +5955,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -5975,19 +5975,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5995,7 +5995,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6010,7 +6010,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -6024,19 +6024,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6044,7 +6044,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6059,7 +6059,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -6081,7 +6081,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address to return + + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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 @@ -6101,19 +6101,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6121,7 +6121,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6136,7 +6136,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -6150,19 +6150,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6170,7 +6170,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6185,7 +6185,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -6207,7 +6207,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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` @@ -6228,19 +6228,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6248,7 +6248,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6263,7 +6263,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -6277,19 +6277,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6297,7 +6297,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6312,7 +6312,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -6334,7 +6334,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address to return + + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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` @@ -6355,19 +6355,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6375,7 +6375,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6390,7 +6390,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -6404,19 +6404,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6424,7 +6424,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6439,7 +6439,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -6461,7 +6461,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe` (str, required) - The address to return + + address: `bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r` (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 @@ -6480,16 +6480,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -6503,7 +6503,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6535,14 +6535,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -6557,20 +6557,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", + "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -6585,20 +6585,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729682689, + "block_time": 1729707086, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", + "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -6613,20 +6613,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682685, + "block_time": 1729707072, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", + "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -6641,20 +6641,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682681, + "block_time": 1729707057, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -6669,7 +6669,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6684,7 +6684,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The issuer or owner to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -6707,8 +6707,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -6716,16 +6716,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": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -6733,16 +6733,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": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -6750,16 +6750,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": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -6767,16 +6767,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": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -6784,8 +6784,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": 1729682526, - "last_issuance_block_time": 1729682542, + "first_issuance_block_time": 1729706911, + "last_issuance_block_time": 1729706927, "supply_normalized": "0.00000000" } ], @@ -6799,7 +6799,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The issuer to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -6822,8 +6822,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -6831,16 +6831,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": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -6848,16 +6848,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": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -6865,16 +6865,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": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -6882,16 +6882,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": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -6899,8 +6899,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": 1729682526, - "last_issuance_block_time": 1729682542, + "first_issuance_block_time": 1729706911, + "last_issuance_block_time": 1729706927, "supply_normalized": "0.00000000" } ], @@ -6914,7 +6914,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The owner to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -6937,8 +6937,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -6946,16 +6946,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": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -6963,16 +6963,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": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -6980,16 +6980,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": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -6997,16 +6997,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": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -7014,8 +7014,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": 1729682526, - "last_issuance_block_time": 1729682542, + "first_issuance_block_time": 1729706911, + "last_issuance_block_time": 1729706927, "supply_normalized": "0.00000000" } ], @@ -7029,7 +7029,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -7048,17 +7048,17 @@ Returns the transactions of an address "result": [ { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", - "block_time": 1729682826, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_time": 1729707215, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", + "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7094,23 +7094,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", - "block_time": 1729682822, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_time": 1729707202, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "supported": true, - "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", + "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "status": "valid" } }, @@ -7118,17 +7118,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 191, - "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", - "block_time": 1729682817, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", + "block_time": 1729707198, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", + "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7164,17 +7164,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", - "block_time": 1729682813, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", + "block_time": 1729707194, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", + "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7182,14 +7182,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7197,7 +7197,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7216,17 +7216,17 @@ Returns the transactions of an address }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 185, - "block_hash": "59b635339e6a5719ed96d6699c10b4f8b84a5b7d229188ab5c9033da064ad5fb", - "block_time": 1729682791, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "0d86fd96dc3fee263f9cf2f0ce83888049645b5043510414bb536b1a6edffa54", + "block_time": 1729707172, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc:1", + "utxos_info": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7271,7 +7271,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -7290,20 +7290,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7328,7 +7328,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7357,9 +7357,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7374,7 +7374,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7400,9 +7400,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7417,7 +7417,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7443,9 +7443,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7460,7 +7460,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7486,9 +7486,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7503,7 +7503,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7538,7 +7538,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The source of the fairminter to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7563,10 +7563,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7591,7 +7591,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7600,10 +7600,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7628,7 +7628,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729682563, + "block_time": 1729706948, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7640,10 +7640,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7668,7 +7668,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729682547, + "block_time": 1729706931, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7680,10 +7680,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7708,7 +7708,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729682542, + "block_time": 1729706927, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7720,10 +7720,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7748,7 +7748,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7770,7 +7770,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address of the mints to return + + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7788,22 +7788,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7812,22 +7812,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", + "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682559, + "block_time": 1729706944, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7836,22 +7836,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", + "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682555, + "block_time": 1729706939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7860,22 +7860,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", + "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682551, + "block_time": 1729706935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7884,22 +7884,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ea72a6c654c3094836a7b3a5ec670df4dd26ed8e5efcc563f823d58388c518b9", + "tx_hash": "5c7fc7e50dc4c7041d440914ca5a755965790114e82568e20e5fc7b81d398fec", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682530, + "block_time": 1729706915, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7908,22 +7908,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -7942,7 +7942,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address of the mints to return + + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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` @@ -7961,22 +7961,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -8018,8 +8018,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will make the bet - + feed_address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will make the bet + + feed_address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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) @@ -8087,7 +8087,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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) @@ -8143,7 +8143,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8155,7 +8155,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001010b783b703c9ae111db37e3edbacea1d6b681e5c72388b073377fd5474ce87a9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a2995f69e555a43c5e63074253045d3088622743235cc11cd756fdc0d3fe0605d5b15a72e706f1d4c78639bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010187c512403ed63cc3ba2e281271a23061df2e1689603ff74b80f36b772daff10400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29859ec55eb3bfcaa16f9e3e53cadb0b44604b608820a20637c23c25a4a0419904638e572b1dbca36a9b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8177,8 +8177,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending the payment - + order_match_id: `0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69` (str, required) - The ID of the order match to pay for + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending the payment + + order_match_id: `b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603` (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) @@ -8230,23 +8230,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" }, "name": "btcpay", - "data": "434e5452505254590b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "data": "434e5452505254590bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101a14227f1320893fa8270679d232cdc4fb916e8a8c4092256f1153095b1b03fb0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03b80b0000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee200000000000000004b6a49a246921c600588061e396e34460288412e7fe162e957fd6b07acf656bf3f2ac69c63afe659d5da29175ae150e47bfbe681b8eaa6370f615bbaefb61b8e2d93db70aa371748a2af823bc79f052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "020000000001013ceaeeef9163c765d415596ef1f4caac86503221412ad57900132caaf9d6c65b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03b80b000000000000160014550b6ff425fadac2efe66d0817448876cd5e407700000000000000004b6a4906a00e613b4cee020592a6cbbaa30b1a133ca66613c2039fc191a991df25b33a724bc144f2a8f24c44517781896c042b70d0665b615b1883f6d441450cccc1ffb198b2eb24281eefdfc79f052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "status": "valid" } } @@ -8259,7 +8259,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address with the BTC to burn + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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` @@ -8314,7 +8314,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "quantity": 1000, "overburn": false }, @@ -8324,7 +8324,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": "020000000001010831406cb2940d069bef89f68b3c083d46012e7eb9d8a848af1240de26446f56000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000" + "rawtransaction": "0200000000010179e4143a09a107f47b85d1ae6fd2850282f939cf47d57334910f04b944b189aa00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000" } } ``` @@ -8334,8 +8334,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb` (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) @@ -8387,21 +8387,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a" + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb" }, "name": "cancel", - "data": "434e545250525459461f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "data": "434e545250525459469a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101f6102456ad9c970ca389c03cca7adc21161ef6f1203c154c74bcdaa8fefed8d8000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a291415e8a26efe9b029b11e5a4799abc6c17d740c2c9fb0c505494944ef5ab17ff51cc4469337688c4899bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101235696618de711c3817a7cca2701aaddb1c5fb266d95500b91cb26765d29fee900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29f79854e51381bd27aacac11b20eea25e70872ecf49b677fee13cb705ca68abcefd660a9f4f48ef402b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "status": "valid" } } @@ -8414,7 +8414,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -8469,7 +8469,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8488,7 +8488,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101daec0411a39537e60d7b66a20d5d7f62fd98c2d247d4788d18b88cd2eb4b7b9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000226a20054abb8dd95e1d4c69ec265331b9d7dcb125027a834c03c71d913be50132fadbaabc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "020000000001012bee2e38dfb041799c2308e4614c1e732e65cd92a8f6630588af2b2c0665f17f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000226a20930ff6501a29ef43923f0f26f4db09d88746b6143f4279df54684904ef9bc136aabc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8508,7 +8508,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: `bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe` (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) @@ -8569,7 +8569,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8593,7 +8593,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": "020000000001011ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b80200000016001492c153ddd35e0d4aea3650d10120755c34e7990dffffffff0200000000000000002c6a2adfa9dc36f662b3ca45d207632d3d00ab19cf6af991570f5f89c1220f01a1075b0e85f923bb36e6f1271bb0540a270100000016001492c153ddd35e0d4aea3650d10120755c34e7990d02000000000000", + "rawtransaction": "02000000000101cc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc302000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b2526ffffffff0200000000000000002c6a2a1c00957e5fe032db14274a2c28e7a740ee8fdd5dc4dbf36a84fc4191bf757a2c33530c552ea9a11d6148b0540a2701000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b252602000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8619,7 +8619,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -8674,14 +8674,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -8700,7 +8700,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "0200000000010199d1c48a6c745e75a1b7f5b0a08e3ba15b20d8c43a08fe211563efc56c69cf1a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a213f626915e1985cc6b16d51e7be78949447b6307b760b934fcc0e257cebdffc701e6fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010141ac03f1b77ba5eeb09f53c0a97248429efd89a06ad9ae66e92acead08f7d4a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a215bc1a118ae8c811789ad518e8ceeed229d9f8ceda3b106fd917da9b4da6a429de46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8721,10 +8721,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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` @@ -8785,10 +8785,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "transfer_destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "lock": false, "reset": false, @@ -8801,7 +8801,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": "020000000001010fd1eb92bbad2c48eb444874c6f0c4657c2ab70bb15ebc55798f0a3bc551f27d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0322020000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee20000000000000000236a21b1c4e3df44d1a16438a85c7fa94ceef59a148c206940254b3544ffcc2830e3e93185b2052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010126982455051478f76a5dd4d40736b953b7a6d9f65782618e2febafd5cc3eb83900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff032202000000000000160014550b6ff425fadac2efe66d0817448876cd5e40770000000000000000236a21d482901ac646d880017c681e71228e63b89f7ab94de9b88b6ea9aa3ef45e2bd58b85b2052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8830,9 +8830,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl,bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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` @@ -8889,16 +8889,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", 1 ], [ "MYASSETA", - "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", 2 ] ], @@ -8906,26 +8906,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002808dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280550b6ff425fadac2efe66d0817448876cd5e4077808d415efb3d25682f32cc04efaa6b1b02439531358f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001044c537dabcab96e140c3de3e610c12f7a1d9a3a4a7404b3ea0fd783b06b12a5cc000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0d169c69e6f466fca914be8e6728a659b5b957d69b1a14598c5b4c8efdb9c558000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff8713e897e6d149ef33f921baca67449dfd4c8abfe191a11dba5ba7efac761f85000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffffdc3950eeffb56f0515eb56974b98e46efec64858c8c3e3243aa4fb74ff65002000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03e803000000000000695121028a319a76b39fa86de25d059cb44038482de77b7e1ec28f7e5517a4d9c15f977921026c123153a20b731059896c39ccb2fb958331ba4e0c354374e1bb70a8b9f1234a210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210285319a76b39fa86de27e72f146a19c8d6becb6431bf1a51b13e553c0c1fe7003210342f0f9de049affe3c5618471ee8a59f8df1bf402abea78fbc3f315c4d59e0f4b210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753ae14f316a8040000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000000000000", + "rawtransaction": "0200000000010446990a86e10fd1cba8f8434757592bc75bed5d5a4475c0f8d261794d215755f000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff16fad3c739326215e75b69eb121c5513c282cbd184f3ab0b704101650753fc3c00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff443e82a2ab092757b67942c87c0ebfdac4a9bf302aa51b8bc1883748536b4e4d00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff65e5a8be62d6b8eb38ae6bcb8054be7d8efc86498417cec1c21917b5da9b693f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03e8030000000000006951210240cde7e337f6ecb8c9c504468aea18a702a6f6166f0390ef0adf0de6a912155921031fffc323267caf31de068258183e5badf7471d257d7d6dfb1d3ddd017429e2592102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee803000000000000695121024fcde7e337f6ecb8c9e6732b78d377e9d4030ccca1f9ed09b5e8496edfdf4bb121035f880bae6722540cfb6ea56ad43ab4079c5c1d66e84c58743f75b86d1846ce582102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53ae14f316a804000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8941,7 +8941,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -8999,7 +8999,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9016,7 +9016,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9030,7 +9030,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101039f99a470cfc81bee0acf8fcf740555e0536d14fe0423107ac0039eab47e3ec000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000356a333a1d44a001f39a8c4f6cd43e00aa23db97269c6e1e3128929039b3b13ec245a2e828dcf6f24885e28017be6120538fa6b1fda651b8052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101483513635aa06d06f24a39fa24ec9c38c800ad6b83cfc7c088363935682a5db800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000356a33e8edf1f978a10e70b60a2a1f65e7e9e096d71f7eebcf26a2c46580fa448755c1e6f15ec4c147f4d770d8ee5564d40ef9486a7351b8052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9056,8 +9056,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address that will be receiving the asset + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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 @@ -9117,8 +9117,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9134,19 +9134,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b", + "data": "434e54525052545902000000000000000100000000000003e8808d415efb3d25682f32cc04efaa6b1b0243953135", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101edbc6af28317e11cb33f4357af10edcceaac7007101229df0e0f5b266efc5119000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000306a2ec4c584753cfc5f54fd728bd504485ea7c0022b177d2b951c114753c59b951f21cb5a3c366eb074e0dbc5377bf28476b9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101a211b1af02e70933b2646e3b6abf7f98da9b9227e581475d8ec507aaac1248f400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000306a2eb19d9b3eb2c8170334952bb6cb6154cadb6db7758dcfdba4939a0c5df03058801ed4468674c28fa46fcea514fd6276b9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "memo": null, "quantity_normalized": "0.00001000" } @@ -9160,8 +9160,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be sending - + destination: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending + + destination: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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 @@ -9215,23 +9215,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b07ffff", + "data": "434e54525052545904808d415efb3d25682f32cc04efaa6b1b024395313507ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101fa8e0467963955db9b72c729b5e5a51e558034ecb37cf52096280320ce039a3f000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a212f203e2ff10b6c3da89c8b96c3fce9a81993643a0dbe6423f91913c2f4691379726fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010167b6ebe34ace4a228983468b682eb9e2c7f4445dd71edef4d97c3abf35c1f86f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a21490b19f1c282f0724c4ce3496b99ac13c3e0e44673797f363699361817689ec3c46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "flags": 7, "memo": "ffff" } @@ -9245,8 +9245,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: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr` (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` @@ -9299,8 +9299,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "quantity": 1000 }, "name": "dispense", @@ -9309,7 +9309,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "020000000001016caf441850af621deeb22a8b97035139e3df0bc445be782578596bcf50638311020000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3bffffffff03e8030000000000001600143d3b0471e07117073921fa17a6ef90013da3ceea00000000000000000c6a0a121d896d99ff4f3d2943e3c10827010000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3b02000000000000", + "rawtransaction": "020000000001018ce1178e2d7b780aa87ae8eadfd7894887dc66096aff23fcdb15038e3238fe0a020000001600148d415efb3d25682f32cc04efaa6b1b0243953135ffffffff03e8030000000000001600142e97e2e1563653c83bf6d71e62a78132245b4d4600000000000000000c6a0a9957eadb4d8f6b31a775e3c10827010000001600148d415efb3d25682f32cc04efaa6b1b024395313502000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9326,7 +9326,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be issuing the asset + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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: `` @@ -9411,7 +9411,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9442,29 +9442,35 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001018b14f68661cd4bc2bb463285470d615b44410aabf699e8fd7be98b3f7eea34e3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000316a2fd4691e395c696ccf94398842f72b756c82ccff1116c8d5c145690c13fd42a43bb9d1b3248463f38c391d48551026123bb9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101defc0059407d9de2daa2ca41db9fe3c30c7af10b52a08d63c864f67ddd48dacd00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000316a2fc8629d53c3ce824d1aa1c88d7a1efebc7672ca686c9c700d567ce3ed840b8dd6d7a162e2a58a322f4416dcc6e28afb3bb9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, - "message_data": [ - "MYASSET", - "", - 10, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "0.00000000", - false, - false, - false, - true, - "" - ] + "message_data": { + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } } } } @@ -9475,7 +9481,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address that will be minting the asset + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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` @@ -9530,13 +9536,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9548,14 +9554,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101b46d8a28486b8cb7107ab18a8442fd880bf203e7c32523a9781850823e600e7e000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000166a1410682282f59c3b0a5ca5eaa40bdd7905511d0c7c69bf052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101800e5e3b142f757b37d56ff953812fd69f909668d81193198ba47c6d782f7c9000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000166a144b1a8b69820af8f3bf9002285cfe5642a1d7562c69bf052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, - "message_data": [ - "FAIRMINTC", - 1 - ] + "message_data": { + "asset": "FAIRMINTC", + "quantity": 1, + "quantity_normalized": "0.00000001" + } } } } @@ -9566,10 +9573,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: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address from which the assets are attached + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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: `7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f:0` (str, optional) - The utxo to attach the assets to + + destination: `78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9622,8 +9629,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f:0", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9636,12 +9643,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c376466323531633533623061386637393535626335656231306262373261376336356334663063363734343834346562343832636164626239326562643130663a307c5843507c31303030", + "data": "434e545250525459646263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c373861636230383266336133333136626161326135363531663535386366393466326633623337306266356332393930396535363034333766306438383937633a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001061601d308588e431d26b890108b94617fa7431e9c9c2f6434a34ce25a92d330b3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff81f9e96f1c676e35119d42d802dc15052ebef7baacac20e343f655506da272d0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffe09946c6ca88fadd9d9368e49d5614fbc5cc89b362fb6aad25fd3f05a036340d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffff4f007867d945d244894a2d8d50cb81542fa9b80e199672f6c5836b3f03e661c000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff060805e469980cd6df3c145d10de189d6dbd57644ebd31944017a3fdc766b99b000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffaafed3a305e0ac1925ca22615f218910bf78f0bef1805435d02b2acd25a44561000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff04e8030000000000006951210324fb63d58d0fcffccf23e00777204855520a052c9e106c0c16297b1b5f0bde692103bc851ac7b809d438c75205ef32b87dd4a5170dc6457ff7a36a52fadb2baea2e8210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210324fb63d58d0fcffccf72b10635354142565b416e9b16201d112d7c0a575ad8b92102eed31492ec53813d924049ab31fb3188eb1315994434f8be3954fed02cfaa301210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee803000000000000695121030efb63d58d0fcffccf23b354636e495839212427c8452548731c4c68356dea9f21038fe477a4d930b55ba2237f9c05cf09bcdf7677ad7c069bdf5d369ce91e9fc13f210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aec36d22fc060000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106908123fbb702fc2c02fe7e30826107f5d64cb87d00f135883b4dc02d20b7a31000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff50747a820f31ab003a977ce47ad7bfc17bdc4e3e6c6c7503814342cbed5b08a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff27f96f1203bcb1a72454289bb1a0325adea93e7d504f2edf1eb829c591379c2800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff390aad27075ad44eb52ee316fa02e880605fdf8c86d495b179162a6044ed3a1100000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04dca7d1186d9cc2e6ce754a6a354275e6ca2af650f2ce42c4bc072a3db5b17700000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff25d7ebddb86c7fd7c4f3eba18c98eab8aec616150959094899ad2041aa42c91b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04e80300000000000069512102f7fef05d8f73f05c30e63d6d3c86e001fa4b78e96097a0f83a4bd5f785a5130c2103c648efd2d3578fd732fa43d67b2bc76e829c68a085ce544b623f75c1688926a42102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512102f7fef05d8f73f05c30b0393d2fc1e241fe1c20e33e97e5f7630ed7b489f01cf12102d815eecd91468fcc66ba1ecc296bd72ed3dd39ef92831607613423c43add26772102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512103ddfef05d8f73f05c30ba66392dc8e10c903d11fe3dc6e0f1563fb181bcc87fa22103be2cdaaba320bcae558d2eae4f5eb41ceae409d6f7b62037550714a20ab91e452102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aec36d22fc06000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9658,8 +9665,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: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to detach the assets to + + utxo: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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 @@ -9713,8 +9720,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9727,12 +9734,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964313532373434343938643135623934303430613235343432316664653333366631353631386338386163383464663433613238363338376566373466623432323a307c6263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c5843507c31303030", + "data": "434e54525052545964366432373436303830623463313336643463373333376564383065643739666135356463303161633630323733653434643365366634353430646335313535313a307c6263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001037b6abe53a2b2718fa8b0896ec766d6ddb0d84f9ed336ffb3ba2868c071e05bb6010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff1ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b8000000001600144f05c52b2783836407de9a1525fede28bf247496fffffffffcdf62dbc78037c7ca6c6af3aba177b0f8f8eadb6349b01146f19dc9edbfa372010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff04e803000000000000695121035649a707698833ea7cd9846d82e9677525ca137832181458190d8f2fd10237742102ce7d2ee468da0c1fdf16b258c9b26ac1d4c75d2f032da01bb329d9109a37a330210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121035649a707698833ea7c8e8d6fd5b8647577911f2e3117461d4f5ec96b81413108210392386bb26bc71d49d917a7039ab06898da9c04770176f10eaf6edd06dc67ef51210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121027c49a707698833ea7cdccf3389a73f3d49b07b60321d46512d3dbb1fb03002f72103fa491cd50ebe692cec20d469fc845bf9b7ff654e6015947fd51dea71a80f95c3210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253ae11780b27010000001600144f05c52b2783836407de9a1525fede28bf24749602000002000002000000000000", + "rawtransaction": "02000000000103481af936583b31262298b94d80e20c832223a8ff9ad044a4340817c5fbe3fbd7010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffffcc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc3000000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff91b6474b9dcf49c4951fd4b33b5debe95223806c26c86d346f528e02e72ae44e010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff04e8030000000000006951210379d3a33010997c332d081af3a69d7f38603c1ddeb9cbdf791eb8360cbc7c1bdb210328b5ae1b7c78dded46847f04afffe3a51a10816a6ccb9a14cae6ccface958dd1210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210379d3a33010997c332d0a18a2a09a2f6d65351889bc92de364abf701bba3e1afc21022ae9a14f2d6d80b60b866808f7f7f8f11e08922b6f80ca50c2aacceb8e82d371210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210353d3a33010997c332d144de1e6d23f7208477dc0bc98de7a28dc026f8b4f284321031fd0ca234c1db9da7fe21e319a9b80952b71e25c5cf9ad27afd2f89efdf0bbe6210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453ae11780b27010000001600144ea467f94eaca52acac0ee04c5fd37938a96af4802000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9797,8 +9804,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -9806,16 +9813,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "owner": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "owner": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "divisible": true, "locked": false, "supply": 100000000000, @@ -9823,16 +9830,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729682676, - "last_issuance_block_time": 1729682676, + "first_issuance_block_time": 1729707053, + "last_issuance_block_time": 1729707053, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -9840,16 +9847,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -9857,16 +9864,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -9874,8 +9881,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" } ], @@ -9903,8 +9910,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -9912,8 +9919,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729682508, - "last_issuance_block_time": 1729682521, + "first_issuance_block_time": 1729706893, + "last_issuance_block_time": 1729706906, "supply_normalized": "100.00000000" } } @@ -9944,7 +9951,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9952,14 +9959,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9967,7 +9974,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9985,7 +9992,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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. @@ -9997,7 +10004,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -10051,9 +10058,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10068,7 +10075,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10094,9 +10101,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10111,7 +10118,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10137,9 +10144,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10154,7 +10161,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10180,9 +10187,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10197,7 +10204,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10223,9 +10230,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10240,7 +10247,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10302,13 +10309,13 @@ Returns the orders of an asset { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10322,7 +10329,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10342,13 +10349,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10362,7 +10369,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10382,13 +10389,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "tx0_index": 49, - "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 50, - "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10402,7 +10409,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10482,20 +10489,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10503,20 +10510,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", + "event": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10524,20 +10531,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10545,20 +10552,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "event": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10570,16 +10577,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10639,12 +10646,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -10656,16 +10663,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "event": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682834, + "block_time": 1729707224, "asset_info": { "divisible": true, "asset_longname": null, @@ -10677,16 +10684,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "divisible": true, "asset_longname": null, @@ -10698,16 +10705,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "divisible": true, "asset_longname": null, @@ -10719,16 +10726,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "asset_info": { "divisible": true, "asset_longname": null, @@ -10768,20 +10775,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10838,14 +10845,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", + "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -10860,20 +10867,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -10888,20 +10895,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -10916,20 +10923,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -10944,7 +10951,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729682508, + "block_time": 1729706893, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10978,10 +10985,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10989,7 +10996,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -11002,10 +11009,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11013,7 +11020,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -11026,10 +11033,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", "block_index": 189, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -11037,7 +11044,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682809, + "block_time": 1729707189, "asset_info": { "divisible": true, "asset_longname": null, @@ -11050,10 +11057,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", + "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", "block_index": 157, - "source": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", - "destination": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", + "destination": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11061,7 +11068,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682676, + "block_time": 1729707053, "asset_info": { "divisible": true, "asset_longname": null, @@ -11074,10 +11081,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc", + "tx_hash": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691", "block_index": 156, - "source": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", - "destination": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", + "source": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", + "destination": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11085,7 +11092,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682672, + "block_time": 1729707048, "asset_info": { "divisible": true, "asset_longname": null, @@ -11136,9 +11143,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11147,7 +11154,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11157,7 +11164,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -11173,9 +11180,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", + "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", "block_index": 142, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11184,7 +11191,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11194,7 +11201,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682602, + "block_time": 1729706978, "asset_info": { "divisible": true, "asset_longname": null, @@ -11210,9 +11217,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", + "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", "block_index": 150, - "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", + "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11220,10 +11227,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11231,7 +11238,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682636, + "block_time": 1729707022, "asset_info": { "divisible": true, "asset_longname": null, @@ -11247,18 +11254,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11268,7 +11275,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -11293,7 +11300,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - The address to return + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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` @@ -11306,9 +11313,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11317,7 +11324,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11327,7 +11334,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -11377,7 +11384,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11385,7 +11392,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11394,7 +11401,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11402,7 +11409,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11411,7 +11418,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11419,7 +11426,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11428,7 +11435,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11465,27 +11472,27 @@ Returns the dispenses of an asset { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11500,7 +11507,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -11514,27 +11521,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", + "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", "block_index": 147, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11549,7 +11556,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682623, + "block_time": 1729707010, "asset_info": { "divisible": true, "asset_longname": null, @@ -11563,19 +11570,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11583,7 +11590,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11598,7 +11605,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -11612,19 +11619,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11632,7 +11639,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11647,7 +11654,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -11690,8 +11697,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -11699,8 +11706,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729682685, - "last_issuance_block_time": 1729682685, + "first_issuance_block_time": 1729707072, + "last_issuance_block_time": 1729707072, "supply_normalized": "0.00000000" } ], @@ -11739,10 +11746,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11767,7 +11774,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11807,22 +11814,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", + "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", "tx_index": 13, "block_index": 125, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11831,22 +11838,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11855,22 +11862,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11889,7 +11896,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a` (str, required) - The address of the mints to return + + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (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` @@ -11908,22 +11915,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -11972,9 +11979,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11989,7 +11996,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12015,9 +12022,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12032,7 +12039,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12058,9 +12065,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12075,7 +12082,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12101,9 +12108,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "block_index": 188, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12118,7 +12125,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12144,9 +12151,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12161,7 +12168,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12196,7 +12203,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a` (str, required) - The hash of the transaction that created the order + + order_hash: `9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb` (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. @@ -12208,9 +12215,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12225,7 +12232,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12257,7 +12264,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc` (str, required) - The hash of the transaction that created the order + + order_hash: `b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3` (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 @@ -12284,13 +12291,13 @@ Returns the order matches of an order { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12304,7 +12311,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12324,13 +12331,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12344,7 +12351,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12374,7 +12381,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc` (str, required) - The hash of the transaction that created the order + + order_hash: `b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3` (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 @@ -12393,15 +12400,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "btc_amount": 2000, - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "status": "valid", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "btc_amount_normalized": "0.00002000" } ], @@ -12445,9 +12452,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12465,7 +12472,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729682800, + "block_time": 1729707181, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12491,9 +12498,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "block_index": 188, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12511,7 +12518,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12537,9 +12544,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12557,7 +12564,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12583,9 +12590,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12603,7 +12610,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12629,9 +12636,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12649,7 +12656,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12712,13 +12719,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12735,7 +12742,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12755,13 +12762,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12778,7 +12785,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12798,13 +12805,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "tx0_index": 49, - "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 50, - "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12821,7 +12828,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682719, + "block_time": 1729707105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12879,13 +12886,13 @@ Returns all the order matches { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12899,7 +12906,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12919,13 +12926,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12939,7 +12946,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12959,13 +12966,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "tx0_index": 49, - "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 50, - "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12979,7 +12986,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13147,66 +13154,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", + "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", "block_index": 121, - "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", + "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729682503, + "block_time": 1729706888, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "84dc4175af426ef98224178760c28214eaa81cf980a71eb9957bc3756bcaa276", + "tx_hash": "b5e1b542bdf4db3c7e478d833402954d2a9c29bdc166ad86f440d15aad0c7970", "block_index": 120, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729682500, + "block_time": 1729706884, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "a3ea78c95e6a751e8ac77f29ee3cd8a91dc650c83a413d66db6fd0d78c72a98b", + "tx_hash": "88c20ff6685e02b487e0d0b71875538ebef59c1c008b9a6b7fa5a2998f34df02", "block_index": 119, - "source": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt", + "source": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729682496, + "block_time": 1729706879, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8f19504cf556b70ede320708386f56c1830989b1dc0bf3aad9ad12230d9b6072", + "tx_hash": "06c9b9066c478bc6ab3fa33a2f5977ed60c3315a75d4037ae3014a9ef4a22fe4", "block_index": 118, - "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729682492, + "block_time": 1729706875, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "312cc530ddb1eca6dc9d98fea85e8a41dc49b634ca4d699da68651c065bf88f6", + "tx_hash": "ee6b7b48ba8530c152f193e489e4f254a54a3e6d07d694bfee743b9c7d5b08a1", "block_index": 117, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729682487, + "block_time": 1729706871, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13251,9 +13258,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13262,7 +13269,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13272,7 +13279,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -13288,9 +13295,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", + "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", "block_index": 142, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13299,7 +13306,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13309,7 +13316,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682602, + "block_time": 1729706978, "asset_info": { "divisible": true, "asset_longname": null, @@ -13325,9 +13332,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", + "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", "block_index": 150, - "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", + "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13335,10 +13342,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13346,7 +13353,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682636, + "block_time": 1729707022, "asset_info": { "divisible": true, "asset_longname": null, @@ -13362,18 +13369,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13383,7 +13390,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -13408,7 +13415,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72` (str, required) - The hash of the dispenser to return + + dispenser_hash: `421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f` (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. @@ -13420,9 +13427,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13431,7 +13438,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13441,7 +13448,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -13463,7 +13470,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72` (str, required) - The hash of the dispenser to return + + dispenser_hash: `421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f` (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 @@ -13483,19 +13490,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13503,7 +13510,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13518,7 +13525,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -13532,19 +13539,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13552,7 +13559,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13567,7 +13574,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -13609,20 +13616,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -13647,7 +13654,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc` (str, required) - The hash of the dividend to return + + dividend_hash: `98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e` (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. @@ -13659,20 +13666,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -13694,7 +13701,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e` (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 @@ -13717,12 +13724,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "tx_index": 41, - "utxo": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "utxo": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "divisible": true, "asset_longname": null, @@ -13734,16 +13741,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "address": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "divisible": true, "asset_longname": null, @@ -13789,27 +13796,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 561, @@ -13818,14 +13825,14 @@ Returns all events "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -13836,9 +13843,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 560, @@ -13847,9 +13854,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -13859,24 +13866,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -13886,9 +13893,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 558, @@ -13916,15 +13923,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } } ``` @@ -14002,16 +14009,16 @@ Returns the events filtered by event name "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -14021,9 +14028,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 557, @@ -14033,12 +14040,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -14048,9 +14055,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 554, @@ -14060,39 +14067,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "divisible": true, "asset_longname": null, @@ -14102,36 +14109,36 @@ Returns the events filtered by event name }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "block_time": 1729682830 + "block_time": 1729707220 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "block_time": 1729682830 + "block_time": 1729707220 } ], "next_cursor": 536, @@ -14187,27 +14194,27 @@ Returns all the dispenses { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14222,7 +14229,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -14236,27 +14243,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", + "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", "block_index": 147, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14271,7 +14278,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682623, + "block_time": 1729707010, "asset_info": { "divisible": true, "asset_longname": null, @@ -14285,19 +14292,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14305,7 +14312,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14320,7 +14327,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -14334,19 +14341,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14354,7 +14361,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14369,7 +14376,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -14411,10 +14418,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14422,7 +14429,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -14435,10 +14442,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14446,11 +14453,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -14459,10 +14466,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14470,7 +14477,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -14483,10 +14490,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14494,11 +14501,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -14507,10 +14514,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14518,11 +14525,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -14573,14 +14580,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -14595,20 +14602,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", + "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -14623,20 +14630,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729682689, + "block_time": 1729707086, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", + "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -14651,20 +14658,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682685, + "block_time": 1729707072, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", + "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -14679,20 +14686,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682681, + "block_time": 1729707057, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", + "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "transfer": false, "callable": false, "call_date": 0, @@ -14707,7 +14714,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682676, + "block_time": 1729707053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14722,7 +14729,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6` (str, required) - The hash of the transaction to return + + tx_hash: `6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87` (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. @@ -14734,14 +14741,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -14756,7 +14763,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14788,16 +14795,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -14811,7 +14818,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54` (str, required) - The hash of the transaction to return + + tx_hash: `5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6` (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. @@ -14824,16 +14831,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -14867,9 +14874,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "block_index": 138, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14877,14 +14884,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682576, + "block_time": 1729706961, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", + "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", "block_index": 137, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14892,7 +14899,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682571, + "block_time": 1729706957, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14906,7 +14913,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441` (str, required) - The hash of the transaction to return + + tx_hash: `8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b` (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. @@ -14918,9 +14925,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "block_index": 138, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14928,7 +14935,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682576, + "block_time": 1729706961, "fee_fraction_int_normalized": "0.00000000" } } @@ -14965,10 +14972,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -14993,7 +15000,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15002,10 +15009,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15030,7 +15037,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729682563, + "block_time": 1729706948, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15042,10 +15049,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15070,7 +15077,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729682547, + "block_time": 1729706931, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15082,10 +15089,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15110,7 +15117,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729682542, + "block_time": 1729706927, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15122,10 +15129,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15150,7 +15157,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15219,22 +15226,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -15243,22 +15250,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", + "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682559, + "block_time": 1729706944, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -15267,22 +15274,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", + "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682555, + "block_time": 1729706939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -15291,22 +15298,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", + "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682551, + "block_time": 1729706935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -15315,22 +15322,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ba53cd3c00d1019d1b50204c486102b904b364bf02919d25a42979da7df404bb", + "tx_hash": "00ae9a87cf055baf3a423ca8542da114393af49566d7ba8813ea5a137e2212d6", "tx_index": 17, "block_index": 129, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682538, + "block_time": 1729706923, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -15349,7 +15356,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f` (str, required) - The hash of the fairmint to return + + tx_hash: `ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56` (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. @@ -15360,22 +15367,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -15393,7 +15400,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l,bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt` (str, required) - The addresses to search for + + addresses: `bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe,bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu` (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. @@ -15412,8 +15419,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", - "address": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l" + "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", + "address": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe" }, { "vout": 2, @@ -15421,8 +15428,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", - "address": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt" + "txid": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", + "address": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu" } ], "next_cursor": null, @@ -15435,7 +15442,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe` (str, required) - The address to search for + + address: `bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r` (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 @@ -15451,28 +15458,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139" + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" }, { - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54" + "tx_hash": "2e3539a7e624d565e115227f3e1ce0d2ceda8eadc192cd00942b0f68b13f940f" }, { - "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f" }, { - "tx_hash": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85" + "tx_hash": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4" }, { - "tx_hash": "9f412c2a0eb172e04aeb2cecbbe34d0253bb97d4ee2a89ef5b3ebeda5bbd82b9" + "tx_hash": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece" }, { - "tx_hash": "ee4098f053d5cc0b7cb0356bd498c983b4bdc9bf6239a734af5d0ea14d728cd1" + "tx_hash": "dbf445eb4b00e0f435ff1684067857c017d517553d31908e9842e5cd5f0037cf" }, { - "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1" + "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc" }, { - "tx_hash": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed" + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6" } ], "next_cursor": null, @@ -15485,7 +15492,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5` (str, required) - The address to search for. + + address: `bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw` (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. @@ -15498,8 +15505,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 4, - "tx_hash": "b5d6deaa91e93fa3e4bb821a406408c40560ee36370b59b2a1fc2ed8b03b9197" + "block_index": 1, + "tx_hash": "e3d1bd6cdb590367b2c0d2f4afdc5dd5c683580218cb6894eef968342f75ab11" } } ``` @@ -15509,7 +15516,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l` (str, required) - The address to search for + + address: `bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe` (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 @@ -15530,7 +15537,7 @@ Returns a list of unspent outputs for a specific address "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d" + "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc" } ], "next_cursor": null, @@ -15543,7 +15550,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl` (str, required) - Address to get pubkey for. + + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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. @@ -15555,7 +15562,7 @@ Get pubkey for an address. ``` { - "result": "0260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea4452727" + "result": "02090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e" } ``` @@ -15564,7 +15571,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422` (str, required) - The transaction hash + + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (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. @@ -15576,7 +15583,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010180192c8679dee5a88c6c1e5020a32ddfe3b5c790d01eaf884de43b4fc4a94e010100000000ffffffff03e8030000000000001600144f05c52b2783836407de9a1525fede28bf24749600000000000000000c6a0ae4629855183ecd800ac4dced0827010000001600141c271ea9891c8626e5d0b35a9c8868f7fa8ab976024730440220636b9ba1f51f071cd83e22caba118437be32e31f8d75416858820425802a169802203a3f999c266047dd6a1c2f1a0f22ded832143cebe17688f590da920eb1779560012103b178c6a6f98921e6e1470bbc2f8a1abd6fff27b71a15a5fc81c9d68ce1fa3e4e00000000" + "result": "02000000000101a4e98d52a5df1bc18cdc98d8c1c34afbe125497930eca2aee488b72932062ba60100000000ffffffff03e8030000000000001600144ea467f94eaca52acac0ee04c5fd37938a96af4800000000000000000c6a0af3adabb38504da911c6bdced08270100000016001400d5152e52ecda510f62bc224a3ca073dad7b6820247304402203a9020efcb55ee1b110b98332546a3b5030d807ff754b083876e46d87af6956902201029b9cac9fc9ccbd49cb49009b692b69f5127448381c1b1e2d19ef675e488f9012102ab7e7a2ba1f07d9f8dfdb4260655d143756a34a46c5af3ab6fd63809268352e100000000" } ``` @@ -15671,27 +15678,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63 }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "quantity": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, "asset_info": { "divisible": true, @@ -15702,22 +15709,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -15727,22 +15734,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 196, - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -15752,30 +15759,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729682848.4038758, + "block_time": 1729707238.1041224, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "destination": "", "fee": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, - "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", + "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -15789,7 +15796,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, @@ -15820,19 +15827,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -15842,7 +15849,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, @@ -15855,7 +15862,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9` (str, required) - The hash of the transaction to return + + tx_hash: `f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52` (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 @@ -15875,27 +15882,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63 }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "quantity": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, "asset_info": { "divisible": true, @@ -15906,22 +15913,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -15931,22 +15938,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 196, - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -15956,30 +15963,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729682848.4038758, + "block_time": 1729707238.1041224, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "destination": "", "fee": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, - "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", + "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -15993,7 +16000,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 93cad47319..3cd2bd71f2 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -885,11 +885,11 @@ def unpack(db, datahex: str, block_index: int = None): # Fair Minter elif message_type_id == messages.fairminter.ID: message_type_name = "fairminter" - message_data = messages.fairminter.unpack(message) + message_data = messages.fairminter.unpack(message, return_dict=True) # Fair Mint elif message_type_id == messages.fairmint.ID: message_type_name = "fairmint" - message_data = messages.fairmint.unpack(message) + message_data = messages.fairmint.unpack(message, return_dict=True) except (exceptions.UnpackError, UnicodeDecodeError) as e: message_data = {"error": str(e)} diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index fc18fc8d15..173f25cd10 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": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", "difficulty": 545259519, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, "confirmed": true }, { "block_index": 195, - "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", - "block_time": 1729682834, - "previous_block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", + "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_time": 1729707224, + "previous_block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", "difficulty": 545259519, - "ledger_hash": "43e8f0a04c8a827e1a7e252f08793df6fcd648b14cbd6848c1222d700483f013", - "txlist_hash": "dc1a0a29cb30593fa918c114b56f5d538e516f853dd43ac5a492ace4820b5203", - "messages_hash": "f4bec68c1c55f8a9f347cd88b511e669af5220d46247f11c7b4f7ed360c42e94", + "ledger_hash": "61d7662817cf15d3d892545de3870004d4191aeccba1ace111995a818f7566e2", + "txlist_hash": "6e6e7b7a088ebff6b433713b6a665e9d1bf3a99b8dc72f950796afcbd898b8db", + "messages_hash": "471896ab6baf5db07797d7f2ded0f36290ba5e092111f02cdce8f2d9900ded11", "transaction_count": 1, "confirmed": true }, { "block_index": 194, - "block_hash": "3cfdb5f4cd0676ae808c0ac7ece9d779472e29a6bfada1ba182a5f56cd22ebd0", - "block_time": 1729682830, - "previous_block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", + "block_time": 1729707220, + "previous_block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", "difficulty": 545259519, - "ledger_hash": "4b133b746cd856aebcce555e50aaba2f6d1d9be21da74ac968e8460c0d20d80d", - "txlist_hash": "0b979d6cc00b2cdf530ba20965941bbbe8a8b8a2a29bed285e71dc0ae7ef4d46", - "messages_hash": "d710116f570777e25f57698522a7912ad2b60d407964af35d450ca621c73df30", + "ledger_hash": "934402e63ccfe7db85edfbdda51e806474fef59c7a5a41c1d1d1d76817a571da", + "txlist_hash": "b05b7c0fcc05b6960ca55c171696399ca82482c1698614239bb7771312ddb1bd", + "messages_hash": "d3f105834888b1910869e34cc27428bdfaa0e29f1625326b13067f4b7c61d284", "transaction_count": 1, "confirmed": true }, { "block_index": 193, - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", - "block_time": 1729682826, - "previous_block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_time": 1729707215, + "previous_block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", "difficulty": 545259519, - "ledger_hash": "0ba322c20d9896dd65ac2dcd9ea1c444a35c3230f6a1e23c2e39e4f0ac116546", - "txlist_hash": "502b59090ef1f49257b49b9c006f3238e7787ba360ce07ade9cc41403dc6d31f", - "messages_hash": "f054c2e82c5cff4288ba911077591f38c37ce24ecbc7e1d7ee5c361d2c3c03a5", + "ledger_hash": "1d565434cde1ae1c18bce1a7d81b92ca59c41d3adfbfc8fad4204d89025a276b", + "txlist_hash": "07f3b8f789431d9fbba8309e7df2a6c19739bbff0c5485ec6efbaf9002ba56bb", + "messages_hash": "c38e0cc08d1dd4a4a8bab2ac39a0aa0c3dcb13de0cf0d340059371dd5bce4c24", "transaction_count": 1, "confirmed": true }, { "block_index": 192, - "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", - "block_time": 1729682822, - "previous_block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", + "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_time": 1729707202, + "previous_block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", "difficulty": 545259519, - "ledger_hash": "5403c4099c4a05514d697a5a8fd014092cac635c4227043d0728c58e298b9cf5", - "txlist_hash": "7725cc03afd6655ea1149cb6f1a47685ac0cb99d933f939cbc84319469152d32", - "messages_hash": "832cf6d8d53a118d96ef968ba60a968977dd8dc4a6d5b4ba44759b36fab99074", + "ledger_hash": "59c5b68a2a15d6dc351dd4f6b233f9b0890eba12abec79a454b106acd1ede8fd", + "txlist_hash": "bde702719a9df6e5038c4f540c7d2e922d64ed39efc1a70992d7a08aae7d6d29", + "messages_hash": "6ad1b388c7c1793be98b6be7c65090da3462ffe35c33aa7a6fda18139b4c3f83", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", "difficulty": 545259519, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", "difficulty": 545259519, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 561, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 560, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" } ], "next_cursor": 558, @@ -256,16 +256,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 557, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" }, { "event_index": 554, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422" + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 196, - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "object_id": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "block_index": 184, "confirmed": true, - "block_time": 1729682719 + "block_time": 1729707105 }, { "type": "order", - "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, "confirmed": true, - "block_time": 1729682719 + "block_time": 1729707105 }, { "type": "order_match", - "object_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "block_index": 184, "confirmed": true, - "block_time": 1729682719 + "block_time": 1729707105 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "status": "valid", "confirmed": true, - "block_time": 1729682822 + "block_time": 1729707202 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "block_index": 195, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729682834, + "block_time": 1729707224, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "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": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -683,10 +683,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -711,7 +711,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -726,22 +726,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -757,17 +757,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -780,17 +780,17 @@ }, { "tx_index": 61, - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "block_index": 195, - "block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8", - "block_time": 1729682834, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_time": 1729707224, + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469:1", + "utxos_info": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -830,7 +830,7 @@ { "hash": "0000000000000000000000000000000000000000000000000000000000000000", "n": 4294967295, - "script_sig": "013300", + "script_sig": "015300", "sequence": 4294967295, "coinbase": true } @@ -838,7 +838,7 @@ "vout": [ { "value": 5000000000, - "script_pub_key": "00148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2" + "script_pub_key": "0014550b6ff425fadac2efe66d0817448876cd5e4077" }, { "value": 0, @@ -849,25 +849,25 @@ "0000000000000000000000000000000000000000000000000000000000000000" ], "lock_time": 0, - "tx_hash": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f", - "tx_id": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f" + "tx_hash": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c", + "tx_id": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c" } } }, "/v2/transactions//info": { "result": { - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "291f37f0d68ee13192bc945fa63e0346b75cfe0f8b03d7813b01be3cdccdf9df", + "hash": "a427020b568e7a81e34d35e0881b1908445542bc1508a13e7332e7bba8d4e4d5", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -877,20 +877,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e7c88a2da47e81d18491abe8640475e2c44399db4b3ab4c98d5889ae2ce7ea6c9cfc89bc544182c369a8e0908fea0" + "script_pub_key": "6a2eb63a752647ee27c323fe7dcad1af7281f8bf1c18901ae8b6ac48ccc1ac4c9160be27dd740af8d04e9fce006605d7" }, { "value": 4999955000, - "script_pub_key": "00143d3b0471e07117073921fa17a6ef90013da3ceea" + "script_pub_key": "00142e97e2e1563653c83bf6d71e62a78132245b4d46" } ], "vtxinwit": [ - "30440220610233430eea2dfe24bcb47a9bbf6bfd7d81e79936110c05b3888b785343fe9e02206f12f9219be34d7da8d45cebf199b1edde1e0fd727893ec160ad889b5ba74dea01", - "02c79d13cefda6ec9da4b9064fab4131c35057629a8d92b01e560b44713c7f2abd" + "304402201f2c52d6ead64dff96d04bc1739c70f38f8413aeda25673209a9e5a1f351575402206f9f4fe86d85fa15cbbc2416288fb07c3cf2263ed7070dc8a58978fcdd67beec01", + "0211063470b3527db73bd0c05e137fbb770ff8d79dc286942eacf4ea630e87e6bc" ], "lock_time": 0, - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", - "tx_id": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9" + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_id": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52" }, "unpacked_data": { "message_type": "enhanced_send", @@ -898,7 +898,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -925,17 +925,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -950,17 +950,17 @@ "/v2/transactions/": { "result": { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", - "block_time": 1729682844, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", + "block_time": 1729707233, + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -979,12 +979,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 561, @@ -993,14 +993,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1011,9 +1011,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 560, @@ -1022,9 +1022,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -1034,24 +1034,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1061,9 +1061,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 558, @@ -1071,14 +1071,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "msg_index": 1, "quantity": 1500000000, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "status": "valid", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1088,9 +1088,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 557, @@ -1103,12 +1103,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 561, @@ -1117,14 +1117,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1135,9 +1135,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 560, @@ -1146,9 +1146,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -1158,24 +1158,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1185,9 +1185,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 558, @@ -1195,14 +1195,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "msg_index": 1, "quantity": 1500000000, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "status": "valid", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1212,9 +1212,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 557, @@ -1224,10 +1224,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1235,7 +1235,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,10 +1248,10 @@ }, { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1259,11 +1259,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1279,27 +1279,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1314,7 +1314,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1335,16 +1335,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1354,9 +1354,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 557, @@ -1366,12 +1366,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1381,9 +1381,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 554, @@ -1393,24 +1393,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": null, @@ -1422,16 +1422,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1441,9 +1441,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 557, @@ -1453,12 +1453,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -1468,9 +1468,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 554, @@ -1480,24 +1480,24 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": null, @@ -1510,7 +1510,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1520,7 +1520,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1531,7 +1531,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1541,7 +1541,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1552,7 +1552,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1562,7 +1562,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1573,7 +1573,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1583,7 +1583,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1594,7 +1594,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1604,7 +1604,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1618,17 +1618,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", - "block_time": 1729682826, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_time": 1729707215, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", + "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1664,23 +1664,23 @@ }, { "tx_index": 58, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", - "block_time": 1729682822, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_time": 1729707202, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "supported": true, - "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", + "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "status": "valid" } }, @@ -1688,17 +1688,17 @@ }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 191, - "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", - "block_time": 1729682817, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", + "block_time": 1729707198, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", + "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1734,17 +1734,17 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", - "block_time": 1729682813, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", + "block_time": 1729707194, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", + "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1752,14 +1752,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -1767,7 +1767,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -1786,25 +1786,25 @@ }, { "tx_index": 53, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_hash": "772ab4c2ade86d700d4d2c7dc40911ae529a206307c0e20d003b8812813261c0", - "block_time": 1729682800, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "738f28c86aa369eed0bfc906eb5fcfa866238b9dc276bf286ef4ccd562dc7113", + "block_time": 1729707181, + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "btc_amount": 2000, "fee": 10000, - "data": "0b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "data": "0bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b37f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "supported": true, - "utxos_info": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c:0", + "utxos_info": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "status": "valid" } }, @@ -1833,11 +1833,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "open", - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1861,24 +1861,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 }, { "event_index": 528, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "block_index": 193, - "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "quantity": 1000, "tx_index": 59, "utxo": null, "utxo_address": null, - "block_time": 1729682826, + "block_time": 1729707215, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,25 +1888,25 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 }, { "event_index": 527, "event": "NEW_TRANSACTION", "params": { - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", "block_index": 193, - "block_time": 1729682826, + "block_time": 1729707215, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, - "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", + "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -1938,40 +1938,40 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 }, { "event_index": 523, "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "tx_index": 58, - "block_time": 1729682822 + "block_time": 1729707202 }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 }, { "event_index": 522, "event": "CREDIT", "params": { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "block_index": 192, "calling_function": "cancel order", - "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "quantity": 1000, "tx_index": 58, "utxo": null, "utxo_address": null, - "block_time": 1729682822, + "block_time": 1729707202, "asset_info": { "divisible": true, "asset_longname": null, @@ -1981,9 +1981,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 } ], "next_cursor": 520, @@ -1992,17 +1992,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "quantity": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, "asset_info": { "divisible": true, @@ -2013,22 +2013,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2038,22 +2038,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 196, - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -2063,30 +2063,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729682848.4038758, + "block_time": 1729707238.1041224, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "destination": "", "fee": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, - "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", + "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -2100,7 +2100,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, @@ -2109,7 +2109,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2117,14 +2117,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2132,14 +2132,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2154,7 +2154,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "TESTLOCKDESC", "quantity": 10000000000, "utxo": null, @@ -2162,7 +2162,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2175,7 +2175,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2197,16 +2197,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "asset_info": { "divisible": true, "asset_longname": null, @@ -2218,16 +2218,16 @@ }, { "block_index": 184, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "event": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "asset_info": { "divisible": true, "asset_longname": null, @@ -2239,20 +2239,20 @@ }, { "block_index": 161, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "event": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2260,20 +2260,20 @@ }, { "block_index": 158, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", + "event": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682681, + "block_time": 1729707057, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2285,16 +2285,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "event": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "tx_index": 39, - "utxo": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", - "utxo_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "utxo": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "utxo_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "confirmed": true, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2308,16 +2308,16 @@ "result": [ { "block_index": 193, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,16 +2329,16 @@ }, { "block_index": 191, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682817, + "block_time": 1729707198, "asset_info": { "divisible": true, "asset_longname": null, @@ -2350,16 +2350,16 @@ }, { "block_index": 190, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2371,20 +2371,20 @@ }, { "block_index": 190, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2392,16 +2392,16 @@ }, { "block_index": 185, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 10000, "action": "open order", - "event": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "event": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "tx_index": 51, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682791, + "block_time": 1729707172, "asset_info": { "divisible": true, "asset_longname": null, @@ -2424,9 +2424,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", + "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", "block_index": 137, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2434,7 +2434,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682571, + "block_time": 1729706957, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2445,14 +2445,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "5a5ef08dcd1fc68de370600948dc5d22c1c77554d6449db42678a1cdf3a598d4", + "tx_hash": "649c26715a5677a8a818a199c2b672fca8d541b44b4d0cc9163d0f87ddfc2173", "block_index": 112, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729682467, + "block_time": 1729706850, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2464,10 +2464,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2475,7 +2475,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -2488,10 +2488,10 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2499,11 +2499,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2512,10 +2512,10 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2523,11 +2523,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2536,10 +2536,10 @@ }, { "tx_index": 39, - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "block_index": 152, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2547,11 +2547,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2560,10 +2560,10 @@ }, { "tx_index": 36, - "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", + "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", "block_index": 149, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2571,11 +2571,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682632, + "block_time": 1729707018, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2590,10 +2590,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "block_index": 151, - "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", - "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", + "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2601,11 +2601,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682640, + "block_time": 1729707027, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2620,10 +2620,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2631,11 +2631,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2644,10 +2644,10 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2655,11 +2655,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2668,10 +2668,10 @@ }, { "tx_index": 39, - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "block_index": 152, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2679,11 +2679,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2692,10 +2692,10 @@ }, { "tx_index": 36, - "tx_hash": "bdac10c335bc715e99165b94e56195fe6cf97aebb4b74e7e171716d53e3283dd", + "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", "block_index": 149, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85:1", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2703,11 +2703,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682632, + "block_time": 1729707018, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2722,10 +2722,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "block_index": 151, - "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", - "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", + "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2733,11 +2733,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682640, + "block_time": 1729707027, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -2752,9 +2752,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2763,7 +2763,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2773,7 +2773,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -2794,9 +2794,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2805,7 +2805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2815,7 +2815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -2835,19 +2835,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2855,7 +2855,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2870,7 +2870,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -2884,19 +2884,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2904,7 +2904,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2919,7 +2919,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -2939,19 +2939,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2959,7 +2959,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2974,7 +2974,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -2988,19 +2988,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3008,7 +3008,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3023,7 +3023,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -3043,19 +3043,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3063,7 +3063,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3078,7 +3078,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -3092,19 +3092,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3112,7 +3112,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3127,7 +3127,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -3147,19 +3147,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3167,7 +3167,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3182,7 +3182,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -3196,19 +3196,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3216,7 +3216,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3231,7 +3231,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -3250,16 +3250,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -3270,14 +3270,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -3292,20 +3292,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", + "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -3320,20 +3320,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729682689, + "block_time": 1729707086, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", + "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -3348,20 +3348,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682685, + "block_time": 1729707072, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", + "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -3376,20 +3376,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682681, + "block_time": 1729707057, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -3404,7 +3404,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3418,8 +3418,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -3427,16 +3427,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -3444,16 +3444,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -3461,16 +3461,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -3478,16 +3478,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -3495,8 +3495,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729682526, - "last_issuance_block_time": 1729682542, + "first_issuance_block_time": 1729706911, + "last_issuance_block_time": 1729706927, "supply_normalized": "0.00000000" } ], @@ -3509,8 +3509,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -3518,16 +3518,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -3535,16 +3535,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -3552,16 +3552,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -3569,16 +3569,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -3586,8 +3586,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729682526, - "last_issuance_block_time": 1729682542, + "first_issuance_block_time": 1729706911, + "last_issuance_block_time": 1729706927, "supply_normalized": "0.00000000" } ], @@ -3600,8 +3600,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -3609,16 +3609,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -3626,16 +3626,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -3643,16 +3643,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -3660,16 +3660,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -3677,8 +3677,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729682526, - "last_issuance_block_time": 1729682542, + "first_issuance_block_time": 1729706911, + "last_issuance_block_time": 1729706927, "supply_normalized": "0.00000000" } ], @@ -3689,17 +3689,17 @@ "result": [ { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_hash": "26ae70dfee0e047cba031b9c72ff82c617b63b0534851b4a4c38f8ee05843ceb", - "block_time": 1729682826, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_time": 1729707215, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a:1", + "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3735,23 +3735,23 @@ }, { "tx_index": 58, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_hash": "0119142c077ab751e9b894bd0f16d9e481b671ca7cd6903435f75298db118def", - "block_time": 1729682822, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_time": 1729707202, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4672f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "supported": true, - "utxos_info": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e:1", + "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "status": "valid" } }, @@ -3759,17 +3759,17 @@ }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 191, - "block_hash": "56d4f76d84adf1b650f0f13cb8445a4be73a28e56d166823201d37199e9f5bb8", - "block_time": 1729682817, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", + "block_time": 1729707198, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f:1", + "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3805,17 +3805,17 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "block_hash": "4977e951f6e39754ae6592fd54f80d87e46239f3e263f48a3743544d80a7fb1a", - "block_time": 1729682813, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", + "block_time": 1729707194, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b80f56a7774985dfdaa11b006e77a67e7586a030504803d3b0471e07117073921fa17a6ef90013da3ceea400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8:0", + "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3823,14 +3823,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -3838,7 +3838,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3857,17 +3857,17 @@ }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 185, - "block_hash": "59b635339e6a5719ed96d6699c10b4f8b84a5b7d229188ab5c9033da064ad5fb", - "block_time": 1729682791, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "block_hash": "0d86fd96dc3fee263f9cf2f0ce83888049645b5043510414bb536b1a6edffa54", + "block_time": 1729707172, + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", "supported": true, - "utxos_info": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc:1", + "utxos_info": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3909,20 +3909,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -3944,9 +3944,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3961,7 +3961,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3987,9 +3987,9 @@ }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4004,7 +4004,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4030,9 +4030,9 @@ }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4047,7 +4047,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4073,9 +4073,9 @@ }, { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4090,7 +4090,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4121,10 +4121,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4149,7 +4149,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4158,10 +4158,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4186,7 +4186,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729682563, + "block_time": 1729706948, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4198,10 +4198,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4226,7 +4226,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729682547, + "block_time": 1729706931, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4238,10 +4238,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4266,7 +4266,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729682542, + "block_time": 1729706927, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4278,10 +4278,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4306,7 +4306,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4324,22 +4324,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4348,22 +4348,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", + "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682559, + "block_time": 1729706944, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4372,22 +4372,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", + "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682555, + "block_time": 1729706939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4396,22 +4396,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", + "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682551, + "block_time": 1729706935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4420,22 +4420,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ea72a6c654c3094836a7b3a5ec670df4dd26ed8e5efcc563f823d58388c518b9", + "tx_hash": "5c7fc7e50dc4c7041d440914ca5a755965790114e82568e20e5fc7b81d398fec", "tx_index": 15, "block_index": 127, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682530, + "block_time": 1729706915, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4444,22 +4444,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4474,22 +4474,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4507,7 +4507,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4519,7 +4519,7 @@ "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "020000000001010b783b703c9ae111db37e3edbacea1d6b681e5c72388b073377fd5474ce87a9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a2995f69e555a43c5e63074253045d3088622743235cc11cd756fdc0d3fe0605d5b15a72e706f1d4c78639bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010187c512403ed63cc3ba2e281271a23061df2e1689603ff74b80f36b772daff10400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29859ec55eb3bfcaa16f9e3e53cadb0b44604b608820a20637c23c25a4a0419904638e572b1dbca36a9b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4537,23 +4537,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" }, "name": "btcpay", - "data": "434e5452505254590b0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "data": "434e5452505254590bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978951, "btc_fee": 18049, - "rawtransaction": "02000000000101a14227f1320893fa8270679d232cdc4fb916e8a8c4092256f1153095b1b03fb0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03b80b0000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee200000000000000004b6a49a246921c600588061e396e34460288412e7fe162e957fd6b07acf656bf3f2ac69c63afe659d5da29175ae150e47bfbe681b8eaa6370f615bbaefb61b8e2d93db70aa371748a2af823bc79f052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "020000000001013ceaeeef9163c765d415596ef1f4caac86503221412ad57900132caaf9d6c65b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03b80b000000000000160014550b6ff425fadac2efe66d0817448876cd5e407700000000000000004b6a4906a00e613b4cee020592a6cbbaa30b1a133ca66613c2039fc191a991df25b33a724bc144f2a8f24c44517781896c042b70d0665b615b1883f6d441450cccc1ffb198b2eb24281eefdfc79f052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "status": "valid" } } @@ -4562,7 +4562,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "quantity": 1000, "overburn": false }, @@ -4572,27 +4572,27 @@ "btc_out": 1000, "btc_change": 4999985815, "btc_fee": 13185, - "rawtransaction": "020000000001010831406cb2940d069bef89f68b3c083d46012e7eb9d8a848af1240de26446f56000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000" + "rawtransaction": "0200000000010179e4143a09a107f47b85d1ae6fd2850282f939cf47d57334910f04b944b189aa00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a" + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb" }, "name": "cancel", - "data": "434e545250525459461f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "data": "434e545250525459469a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985819, "btc_fee": 14181, - "rawtransaction": "02000000000101f6102456ad9c970ca389c03cca7adc21161ef6f1203c154c74bcdaa8fefed8d8000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0200000000000000002b6a291415e8a26efe9b029b11e5a4799abc6c17d740c2c9fb0c505494944ef5ab17ff51cc4469337688c4899bba052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101235696618de711c3817a7cca2701aaddb1c5fb266d95500b91cb26765d29fee900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29f79854e51381bd27aacac11b20eea25e70872ecf49b677fee13cb705ca68abcefd660a9f4f48ef402b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "status": "valid" } } @@ -4601,7 +4601,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4620,7 +4620,7 @@ "btc_out": 0, "btc_change": 4999986346, "btc_fee": 13654, - "rawtransaction": "02000000000101daec0411a39537e60d7b66a20d5d7f62fd98c2d247d4788d18b88cd2eb4b7b9a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000226a20054abb8dd95e1d4c69ec265331b9d7dcb125027a834c03c71d913be50132fadbaabc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "020000000001012bee2e38dfb041799c2308e4614c1e732e65cd92a8f6630588af2b2c0665f17f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000226a20930ff6501a29ef43923f0f26f4db09d88746b6143f4279df54684904ef9bc136aabc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4636,7 +4636,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4660,7 +4660,7 @@ "btc_out": 0, "btc_change": 4949955760, "btc_fee": 14240, - "rawtransaction": "020000000001011ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b80200000016001492c153ddd35e0d4aea3650d10120755c34e7990dffffffff0200000000000000002c6a2adfa9dc36f662b3ca45d207632d3d00ab19cf6af991570f5f89c1220f01a1075b0e85f923bb36e6f1271bb0540a270100000016001492c153ddd35e0d4aea3650d10120755c34e7990d02000000000000", + "rawtransaction": "02000000000101cc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc302000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b2526ffffffff0200000000000000002c6a2a1c00957e5fe032db14274a2c28e7a740ee8fdd5dc4dbf36a84fc4191bf757a2c33530c552ea9a11d6148b0540a2701000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b252602000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4682,14 +4682,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4708,7 +4708,7 @@ "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "0200000000010199d1c48a6c745e75a1b7f5b0a08e3ba15b20d8c43a08fe211563efc56c69cf1a000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a213f626915e1985cc6b16d51e7be78949447b6307b760b934fcc0e257cebdffc701e6fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010141ac03f1b77ba5eeb09f53c0a97248429efd89a06ad9ae66e92acead08f7d4a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a215bc1a118ae8c811789ad518e8ceeed229d9f8ceda3b106fd917da9b4da6a429de46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4725,10 +4725,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "transfer_destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "lock": false, "reset": false, @@ -4741,7 +4741,7 @@ "btc_out": 546, "btc_change": 4999983749, "btc_fee": 15705, - "rawtransaction": "020000000001010fd1eb92bbad2c48eb444874c6f0c4657c2ab70bb15ebc55798f0a3bc551f27d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0322020000000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee20000000000000000236a21b1c4e3df44d1a16438a85c7fa94ceef59a148c206940254b3544ffcc2830e3e93185b2052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010126982455051478f76a5dd4d40736b953b7a6d9f65782618e2febafd5cc3eb83900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff032202000000000000160014550b6ff425fadac2efe66d0817448876cd5e40770000000000000000236a21d482901ac646d880017c681e71228e63b89f7ab94de9b88b6ea9aa3ef45e2bd58b85b2052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4766,16 +4766,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", 1 ], [ "MYASSETA", - "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", 2 ] ], @@ -4783,26 +4783,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e545250525459030002808dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280550b6ff425fadac2efe66d0817448876cd5e4077808d415efb3d25682f32cc04efaa6b1b02439531358f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945492, "btc_fee": 52508, - "rawtransaction": "020000000001044c537dabcab96e140c3de3e610c12f7a1d9a3a4a7404b3ea0fd783b06b12a5cc000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff0d169c69e6f466fca914be8e6728a659b5b957d69b1a14598c5b4c8efdb9c558000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff8713e897e6d149ef33f921baca67449dfd4c8abfe191a11dba5ba7efac761f85000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffffdc3950eeffb56f0515eb56974b98e46efec64858c8c3e3243aa4fb74ff65002000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff03e803000000000000695121028a319a76b39fa86de25d059cb44038482de77b7e1ec28f7e5517a4d9c15f977921026c123153a20b731059896c39ccb2fb958331ba4e0c354374e1bb70a8b9f1234a210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210285319a76b39fa86de27e72f146a19c8d6becb6431bf1a51b13e553c0c1fe7003210342f0f9de049affe3c5618471ee8a59f8df1bf402abea78fbc3f315c4d59e0f4b210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753ae14f316a8040000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000000000000", + "rawtransaction": "0200000000010446990a86e10fd1cba8f8434757592bc75bed5d5a4475c0f8d261794d215755f000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff16fad3c739326215e75b69eb121c5513c282cbd184f3ab0b704101650753fc3c00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff443e82a2ab092757b67942c87c0ebfdac4a9bf302aa51b8bc1883748536b4e4d00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff65e5a8be62d6b8eb38ae6bcb8054be7d8efc86498417cec1c21917b5da9b693f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03e8030000000000006951210240cde7e337f6ecb8c9c504468aea18a702a6f6166f0390ef0adf0de6a912155921031fffc323267caf31de068258183e5badf7471d257d7d6dfb1d3ddd017429e2592102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee803000000000000695121024fcde7e337f6ecb8c9e6732b78d377e9d4030ccca1f9ed09b5e8496edfdf4bb121035f880bae6722540cfb6ea56ad43ab4079c5c1d66e84c58743f75b86d1846ce582102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53ae14f316a804000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4814,7 +4814,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4831,7 +4831,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -4845,7 +4845,7 @@ "btc_out": 0, "btc_change": 4999985233, "btc_fee": 14767, - "rawtransaction": "02000000000101039f99a470cfc81bee0acf8fcf740555e0536d14fe0423107ac0039eab47e3ec000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000356a333a1d44a001f39a8c4f6cd43e00aa23db97269c6e1e3128929039b3b13ec245a2e828dcf6f24885e28017be6120538fa6b1fda651b8052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101483513635aa06d06f24a39fa24ec9c38c800ad6b83cfc7c088363935682a5db800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000356a33e8edf1f978a10e70b60a2a1f65e7e9e096d71f7eebcf26a2c46580fa448755c1e6f15ec4c147f4d770d8ee5564d40ef9486a7351b8052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4867,8 +4867,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4884,19 +4884,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b", + "data": "434e54525052545902000000000000000100000000000003e8808d415efb3d25682f32cc04efaa6b1b0243953135", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985526, "btc_fee": 14474, - "rawtransaction": "02000000000101edbc6af28317e11cb33f4357af10edcceaac7007101229df0e0f5b266efc5119000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000306a2ec4c584753cfc5f54fd728bd504485ea7c0022b177d2b951c114753c59b951f21cb5a3c366eb074e0dbc5377bf28476b9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101a211b1af02e70933b2646e3b6abf7f98da9b9227e581475d8ec507aaac1248f400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000306a2eb19d9b3eb2c8170334952bb6cb6154cadb6db7758dcfdba4939a0c5df03058801ed4468674c28fa46fcea514fd6276b9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "memo": null, "quantity_normalized": "0.00001000" } @@ -4906,23 +4906,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808da6918cf39ce8e0482238a26d5c2a4c4ca7df3b07ffff", + "data": "434e54525052545904808d415efb3d25682f32cc04efaa6b1b024395313507ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986287, "btc_fee": 13713, - "rawtransaction": "02000000000101fa8e0467963955db9b72c729b5e5a51e558034ecb37cf52096280320ce039a3f000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000236a212f203e2ff10b6c3da89c8b96c3fce9a81993643a0dbe6423f91913c2f4691379726fbc052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "0200000000010167b6ebe34ace4a228983468b682eb9e2c7f4445dd71edef4d97c3abf35c1f86f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a21490b19f1c282f0724c4ce3496b99ac13c3e0e44673797f363699361817689ec3c46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "flags": 7, "memo": "ffff" } @@ -4932,8 +4932,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "quantity": 1000 }, "name": "dispense", @@ -4942,7 +4942,7 @@ "btc_out": 1000, "btc_change": 4949852643, "btc_fee": 14357, - "rawtransaction": "020000000001016caf441850af621deeb22a8b97035139e3df0bc445be782578596bcf50638311020000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3bffffffff03e8030000000000001600143d3b0471e07117073921fa17a6ef90013da3ceea00000000000000000c6a0a121d896d99ff4f3d2943e3c10827010000001600148da6918cf39ce8e0482238a26d5c2a4c4ca7df3b02000000000000", + "rawtransaction": "020000000001018ce1178e2d7b780aa87ae8eadfd7894887dc66096aff23fcdb15038e3238fe0a020000001600148d415efb3d25682f32cc04efaa6b1b0243953135ffffffff03e8030000000000001600142e97e2e1563653c83bf6d71e62a78132245b4d4600000000000000000c6a0a9957eadb4d8f6b31a775e3c10827010000001600148d415efb3d25682f32cc04efaa6b1b024395313502000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4955,7 +4955,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4986,42 +4986,48 @@ "btc_out": 0, "btc_change": 4999985467, "btc_fee": 14533, - "rawtransaction": "020000000001018b14f68661cd4bc2bb463285470d615b44410aabf699e8fd7be98b3f7eea34e3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000316a2fd4691e395c696ccf94398842f72b756c82ccff1116c8d5c145690c13fd42a43bb9d1b3248463f38c391d48551026123bb9052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101defc0059407d9de2daa2ca41db9fe3c30c7af10b52a08d63c864f67ddd48dacd00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000316a2fc8629d53c3ce824d1aa1c88d7a1efebc7672ca686c9c700d567ce3ed840b8dd6d7a162e2a58a322f4416dcc6e28afb3bb9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, - "message_data": [ - "MYASSET", - "", - 10, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - "0.00000000", - false, - false, - false, - true, - "" - ] + "message_data": { + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } } } }, "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5033,22 +5039,23 @@ "btc_out": 0, "btc_change": 4999987049, "btc_fee": 12951, - "rawtransaction": "02000000000101b46d8a28486b8cb7107ab18a8442fd880bf203e7c32523a9781850823e600e7e000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff020000000000000000166a1410682282f59c3b0a5ca5eaa40bdd7905511d0c7c69bf052a010000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000000000000", + "rawtransaction": "02000000000101800e5e3b142f757b37d56ff953812fd69f909668d81193198ba47c6d782f7c9000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000166a144b1a8b69820af8f3bf9002285cfe5642a1d7562c69bf052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, - "message_data": [ - "FAIRMINTC", - 1 - ] + "message_data": { + "asset": "FAIRMINTC", + "quantity": 1, + "quantity_normalized": "0.00000001" + } } } }, "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "7df251c53b0a8f7955bc5eb10bb72a7c65c4f0c6744844eb482cadbb92ebd10f:0", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5061,12 +5068,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c376466323531633533623061386637393535626335656231306262373261376336356334663063363734343834346562343832636164626239326562643130663a307c5843507c31303030", + "data": "434e545250525459646263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c373861636230383266336133333136626161326135363531663535386366393466326633623337306266356332393930396535363034333766306438383937633a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918531, "btc_fee": 78469, - "rawtransaction": "020000000001061601d308588e431d26b890108b94617fa7431e9c9c2f6434a34ce25a92d330b3000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff81f9e96f1c676e35119d42d802dc15052ebef7baacac20e343f655506da272d0000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffe09946c6ca88fadd9d9368e49d5614fbc5cc89b362fb6aad25fd3f05a036340d000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2fffffffff4f007867d945d244894a2d8d50cb81542fa9b80e199672f6c5836b3f03e661c000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff060805e469980cd6df3c145d10de189d6dbd57644ebd31944017a3fdc766b99b000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffffaafed3a305e0ac1925ca22615f218910bf78f0bef1805435d02b2acd25a44561000000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee2ffffffff04e8030000000000006951210324fb63d58d0fcffccf23e00777204855520a052c9e106c0c16297b1b5f0bde692103bc851ac7b809d438c75205ef32b87dd4a5170dc6457ff7a36a52fadb2baea2e8210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee8030000000000006951210324fb63d58d0fcffccf72b10635354142565b416e9b16201d112d7c0a575ad8b92102eed31492ec53813d924049ab31fb3188eb1315994434f8be3954fed02cfaa301210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aee803000000000000695121030efb63d58d0fcffccf23b354636e495839212427c8452548731c4c68356dea9f21038fe477a4d930b55ba2237f9c05cf09bcdf7677ad7c069bdf5d369ce91e9fc13f210260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea445272753aec36d22fc060000001600148dc0e4648bcd3d0926b1eef1d2f71900a1e72ee202000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106908123fbb702fc2c02fe7e30826107f5d64cb87d00f135883b4dc02d20b7a31000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff50747a820f31ab003a977ce47ad7bfc17bdc4e3e6c6c7503814342cbed5b08a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff27f96f1203bcb1a72454289bb1a0325adea93e7d504f2edf1eb829c591379c2800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff390aad27075ad44eb52ee316fa02e880605fdf8c86d495b179162a6044ed3a1100000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04dca7d1186d9cc2e6ce754a6a354275e6ca2af650f2ce42c4bc072a3db5b17700000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff25d7ebddb86c7fd7c4f3eba18c98eab8aec616150959094899ad2041aa42c91b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04e80300000000000069512102f7fef05d8f73f05c30e63d6d3c86e001fa4b78e96097a0f83a4bd5f785a5130c2103c648efd2d3578fd732fa43d67b2bc76e829c68a085ce544b623f75c1688926a42102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512102f7fef05d8f73f05c30b0393d2fc1e241fe1c20e33e97e5f7630ed7b489f01cf12102d815eecd91468fcc66ba1ecc296bd72ed3dd39ef92831607613423c43add26772102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512103ddfef05d8f73f05c30ba66392dc8e10c903d11fe3dc6e0f1563fb181bcc87fa22103be2cdaaba320bcae558d2eae4f5eb41ceae409d6f7b62037550714a20ab91e452102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aec36d22fc06000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5079,8 +5086,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5093,12 +5100,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964313532373434343938643135623934303430613235343432316664653333366631353631386338386163383464663433613238363338376566373466623432323a307c6263727431713368717767657974653537736a663433616d636139616365717a73377774687a617a6b39796c7c5843507c31303030", + "data": "434e54525052545964366432373436303830623463313336643463373333376564383065643739666135356463303161633630323733653434643365366634353430646335313535313a307c6263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030353, "btc_fee": 46647, - "rawtransaction": "020000000001037b6abe53a2b2718fa8b0896ec766d6ddb0d84f9ed336ffb3ba2868c071e05bb6010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff1ddbcd3fb4122119b667f35e4212723f0ab6f6230a37e27e1bbc93dd2336e1b8000000001600144f05c52b2783836407de9a1525fede28bf247496fffffffffcdf62dbc78037c7ca6c6af3aba177b0f8f8eadb6349b01146f19dc9edbfa372010000001600144f05c52b2783836407de9a1525fede28bf247496ffffffff04e803000000000000695121035649a707698833ea7cd9846d82e9677525ca137832181458190d8f2fd10237742102ce7d2ee468da0c1fdf16b258c9b26ac1d4c75d2f032da01bb329d9109a37a330210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121035649a707698833ea7c8e8d6fd5b8647577911f2e3117461d4f5ec96b81413108210392386bb26bc71d49d917a7039ab06898da9c04770176f10eaf6edd06dc67ef51210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253aee803000000000000695121027c49a707698833ea7cdccf3389a73f3d49b07b60321d46512d3dbb1fb03002f72103fa491cd50ebe692cec20d469fc845bf9b7ff654e6015947fd51dea71a80f95c3210249a4581314e11aa042aec0a9b8b34612f5731418494a72eee03b4d23e3363d5253ae11780b27010000001600144f05c52b2783836407de9a1525fede28bf24749602000002000002000000000000", + "rawtransaction": "02000000000103481af936583b31262298b94d80e20c832223a8ff9ad044a4340817c5fbe3fbd7010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffffcc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc3000000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff91b6474b9dcf49c4951fd4b33b5debe95223806c26c86d346f528e02e72ae44e010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff04e8030000000000006951210379d3a33010997c332d081af3a69d7f38603c1ddeb9cbdf791eb8360cbc7c1bdb210328b5ae1b7c78dded46847f04afffe3a51a10816a6ccb9a14cae6ccface958dd1210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210379d3a33010997c332d0a18a2a09a2f6d65351889bc92de364abf701bba3e1afc21022ae9a14f2d6d80b60b866808f7f7f8f11e08922b6f80ca50c2aacceb8e82d371210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210353d3a33010997c332d144de1e6d23f7208477dc0bc98de7a28dc026f8b4f284321031fd0ca234c1db9da7fe21e319a9b80952b71e25c5cf9ad27afd2f89efdf0bbe6210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453ae11780b27010000001600144ea467f94eaca52acac0ee04c5fd37938a96af4802000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5114,8 +5121,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -5123,16 +5130,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729682681, - "last_issuance_block_time": 1729682689, + "first_issuance_block_time": 1729707057, + "last_issuance_block_time": 1729707086, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "owner": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "owner": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "divisible": true, "locked": false, "supply": 100000000000, @@ -5140,16 +5147,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729682676, - "last_issuance_block_time": 1729682676, + "first_issuance_block_time": 1729707053, + "last_issuance_block_time": 1729707053, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 100000000000, @@ -5157,16 +5164,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729682627, - "last_issuance_block_time": 1729682627, + "first_issuance_block_time": 1729707014, + "last_issuance_block_time": 1729707014, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 40, @@ -5174,16 +5181,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729682563, - "last_issuance_block_time": 1729682567, + "first_issuance_block_time": 1729706948, + "last_issuance_block_time": 1729706952, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 19, @@ -5191,8 +5198,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729682547, - "last_issuance_block_time": 1729682559, + "first_issuance_block_time": 1729706931, + "last_issuance_block_time": 1729706944, "supply_normalized": "0.00000019" } ], @@ -5204,8 +5211,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 10000000000, @@ -5213,15 +5220,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729682508, - "last_issuance_block_time": 1729682521, + "first_issuance_block_time": 1729706893, + "last_issuance_block_time": 1729706906, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5229,14 +5236,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5244,7 +5251,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5257,7 +5264,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5279,9 +5286,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5296,7 +5303,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5322,9 +5329,9 @@ }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5339,7 +5346,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5365,9 +5372,9 @@ }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5382,7 +5389,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5408,9 +5415,9 @@ }, { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5425,7 +5432,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5451,9 +5458,9 @@ }, { "tx_index": 52, - "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5468,7 +5475,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5499,13 +5506,13 @@ "/v2/assets//matches": { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5519,7 +5526,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5539,13 +5546,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5559,7 +5566,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5579,13 +5586,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "tx0_index": 49, - "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 50, - "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5599,7 +5606,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5626,20 +5633,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5647,20 +5654,20 @@ }, { "block_index": 125, - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", + "event": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5668,20 +5675,20 @@ }, { "block_index": 124, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5689,20 +5696,20 @@ }, { "block_index": 124, - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "event": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5714,16 +5721,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5741,12 +5748,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -5758,16 +5765,16 @@ }, { "block_index": 195, - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "event": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682834, + "block_time": 1729707224, "asset_info": { "divisible": true, "asset_longname": null, @@ -5779,16 +5786,16 @@ }, { "block_index": 194, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "divisible": true, "asset_longname": null, @@ -5800,16 +5807,16 @@ }, { "block_index": 194, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "divisible": true, "asset_longname": null, @@ -5821,16 +5828,16 @@ }, { "block_index": 193, - "address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "asset_info": { "divisible": true, "asset_longname": null, @@ -5848,20 +5855,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -5883,14 +5890,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", + "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -5905,20 +5912,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -5933,20 +5940,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -5961,20 +5968,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -5989,7 +5996,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729682508, + "block_time": 1729706893, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6001,10 +6008,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6012,7 +6019,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -6025,10 +6032,10 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6036,7 +6043,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -6049,10 +6056,10 @@ }, { "tx_index": 55, - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", "block_index": 189, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -6060,7 +6067,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682809, + "block_time": 1729707189, "asset_info": { "divisible": true, "asset_longname": null, @@ -6073,10 +6080,10 @@ }, { "tx_index": 44, - "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", + "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", "block_index": 157, - "source": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", - "destination": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", + "destination": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6084,7 +6091,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682676, + "block_time": 1729707053, "asset_info": { "divisible": true, "asset_longname": null, @@ -6097,10 +6104,10 @@ }, { "tx_index": 43, - "tx_hash": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc", + "tx_hash": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691", "block_index": 156, - "source": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", - "destination": "72a3bfedc99df14611b04963dbeaf8f8b077a1abf36a6ccac73780c7db62dffc:0", + "source": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", + "destination": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6108,7 +6115,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682672, + "block_time": 1729707048, "asset_info": { "divisible": true, "asset_longname": null, @@ -6127,9 +6134,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6138,7 +6145,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6148,7 +6155,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -6164,9 +6171,9 @@ }, { "tx_index": 29, - "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", + "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", "block_index": 142, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6175,7 +6182,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6185,7 +6192,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682602, + "block_time": 1729706978, "asset_info": { "divisible": true, "asset_longname": null, @@ -6201,9 +6208,9 @@ }, { "tx_index": 30, - "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", + "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", "block_index": 150, - "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", + "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6211,10 +6218,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6222,7 +6229,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682636, + "block_time": 1729707022, "asset_info": { "divisible": true, "asset_longname": null, @@ -6238,18 +6245,18 @@ }, { "tx_index": 33, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6259,7 +6266,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -6280,9 +6287,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6291,7 +6298,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6301,7 +6308,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -6329,7 +6336,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6337,7 +6344,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6346,7 +6353,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6354,7 +6361,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6363,7 +6370,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6371,7 +6378,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6380,7 +6387,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6395,27 +6402,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6430,7 +6437,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -6444,27 +6451,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", + "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", "block_index": 147, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6479,7 +6486,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682623, + "block_time": 1729707010, "asset_info": { "divisible": true, "asset_longname": null, @@ -6493,19 +6500,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6513,7 +6520,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6528,7 +6535,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -6542,19 +6549,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6562,7 +6569,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6577,7 +6584,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -6598,8 +6605,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "owner": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false, "supply": 0, @@ -6607,8 +6614,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729682685, - "last_issuance_block_time": 1729682685, + "first_issuance_block_time": 1729707072, + "last_issuance_block_time": 1729707072, "supply_normalized": "0.00000000" } ], @@ -6618,10 +6625,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6646,7 +6653,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6664,22 +6671,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "06b146e7f9d167578a48a9044ab00895aaa38192e9dadad9fbd1ce18f5c1a75b", + "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", "tx_index": 13, "block_index": 125, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6688,22 +6695,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1", + "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", "tx_index": 12, "block_index": 124, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682517, + "block_time": 1729706902, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6712,22 +6719,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6742,22 +6749,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "a3b634e6e8b87060a4dd722046a946e84efe363b0b349b8eefa10c439bee729c", + "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", "tx_index": 11, "block_index": 123, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682513, + "block_time": 1729706898, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -6773,9 +6780,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6790,7 +6797,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6816,9 +6823,9 @@ }, { "tx_index": 52, - "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6833,7 +6840,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6859,9 +6866,9 @@ }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6876,7 +6883,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6902,9 +6909,9 @@ }, { "tx_index": 54, - "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "block_index": 188, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6919,7 +6926,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6945,9 +6952,9 @@ }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6962,7 +6969,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6993,9 +7000,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7010,7 +7017,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7038,13 +7045,13 @@ "/v2/orders//matches": { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7058,7 +7065,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7078,13 +7085,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7098,7 +7105,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7125,15 +7132,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "btc_amount": 2000, - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "status": "valid", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "btc_amount_normalized": "0.00002000" } ], @@ -7144,9 +7151,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "block_index": 187, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7164,7 +7171,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729682800, + "block_time": 1729707181, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7190,9 +7197,9 @@ }, { "tx_index": 54, - "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "block_index": 188, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7210,7 +7217,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7236,9 +7243,9 @@ }, { "tx_index": 49, - "tx_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", + "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", "block_index": 184, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7256,7 +7263,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682719, + "block_time": 1729707105, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7282,9 +7289,9 @@ }, { "tx_index": 51, - "tx_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "block_index": 188, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7302,7 +7309,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682804, + "block_time": 1729707185, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7328,9 +7335,9 @@ }, { "tx_index": 57, - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", "block_index": 192, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7348,7 +7355,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682822, + "block_time": 1729707202, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7379,13 +7386,13 @@ "/v2/orders///matches": { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7402,7 +7409,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7422,13 +7429,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7445,7 +7452,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7465,13 +7472,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "tx0_index": 49, - "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 50, - "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7488,7 +7495,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729682719, + "block_time": 1729707105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7514,13 +7521,13 @@ "/v2/order_matches": { "result": [ { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 54, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7534,7 +7541,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7554,13 +7561,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "tx0_index": 51, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 52, - "tx1_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7574,7 +7581,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729682800, + "block_time": 1729707181, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7594,13 +7601,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", + "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", "tx0_index": 49, - "tx0_hash": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx1_index": 50, - "tx1_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7614,7 +7621,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729682719, + "block_time": 1729707105, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7659,66 +7666,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", + "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", "block_index": 121, - "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", + "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729682503, + "block_time": 1729706888, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "84dc4175af426ef98224178760c28214eaa81cf980a71eb9957bc3756bcaa276", + "tx_hash": "b5e1b542bdf4db3c7e478d833402954d2a9c29bdc166ad86f440d15aad0c7970", "block_index": 120, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729682500, + "block_time": 1729706884, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "a3ea78c95e6a751e8ac77f29ee3cd8a91dc650c83a413d66db6fd0d78c72a98b", + "tx_hash": "88c20ff6685e02b487e0d0b71875538ebef59c1c008b9a6b7fa5a2998f34df02", "block_index": 119, - "source": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt", + "source": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729682496, + "block_time": 1729706879, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "8f19504cf556b70ede320708386f56c1830989b1dc0bf3aad9ad12230d9b6072", + "tx_hash": "06c9b9066c478bc6ab3fa33a2f5977ed60c3315a75d4037ae3014a9ef4a22fe4", "block_index": 118, - "source": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729682492, + "block_time": 1729706875, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "312cc530ddb1eca6dc9d98fea85e8a41dc49b634ca4d699da68651c065bf88f6", + "tx_hash": "ee6b7b48ba8530c152f193e489e4f254a54a3e6d07d694bfee743b9c7d5b08a1", "block_index": 117, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729682487, + "block_time": 1729706871, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7730,9 +7737,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7741,7 +7748,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7751,7 +7758,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -7767,9 +7774,9 @@ }, { "tx_index": 29, - "tx_hash": "5b90cc59ed937d95c9fb0ebac9ac771b0df4e079bc59f1d73b341416d6fb0a99", + "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", "block_index": 142, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7778,7 +7785,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7788,7 +7795,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682602, + "block_time": 1729706978, "asset_info": { "divisible": true, "asset_longname": null, @@ -7804,9 +7811,9 @@ }, { "tx_index": 30, - "tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", + "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", "block_index": 150, - "source": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", + "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7814,10 +7821,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "0eb2256fb1f52401796c1978cf2f0d8c9370946b4288b691c463c5ef641a4349", - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7825,7 +7832,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682636, + "block_time": 1729707022, "asset_info": { "divisible": true, "asset_longname": null, @@ -7841,18 +7848,18 @@ }, { "tx_index": 33, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7862,7 +7869,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -7883,9 +7890,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7894,7 +7901,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7904,7 +7911,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -7924,19 +7931,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7944,7 +7951,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7959,7 +7966,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -7973,19 +7980,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7993,7 +8000,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8008,7 +8015,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -8027,20 +8034,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -8061,20 +8068,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -8097,12 +8104,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "tx_index": 41, - "utxo": "dff9cddc3cbe013b81d7038b0ffe5cb746033ea65f94bc9231e18ed6f0371f29:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "utxo": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "divisible": true, "asset_longname": null, @@ -8114,16 +8121,16 @@ }, { "block_index": 154, - "address": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "address": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "divisible": true, "asset_longname": null, @@ -8144,27 +8151,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 562, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 561, @@ -8173,14 +8180,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -8191,9 +8198,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 560, @@ -8202,9 +8209,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -8214,24 +8221,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -8241,9 +8248,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 558, @@ -8255,15 +8262,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } }, "/v2/events/counts": { @@ -8298,16 +8305,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -8317,9 +8324,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 557, @@ -8329,12 +8336,12 @@ "asset": "XCP", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -8344,9 +8351,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 554, @@ -8356,39 +8363,39 @@ "asset": "MYASSETA", "block_index": 196, "calling_function": "utxo move", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", - "utxo_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "block_time": 1729682844, + "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 }, { "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "divisible": true, "asset_longname": null, @@ -8398,36 +8405,36 @@ }, "quantity_normalized": "744.99388000" }, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "block_time": 1729682830 + "block_time": 1729707220 }, { "event_index": 538, "event": "CREDIT", "params": { - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "block_index": 194, "calling_function": "sweep", - "event": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "quantity": 10, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729682830, + "block_time": 1729707220, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "block_time": 1729682830 + "block_time": 1729707220 } ], "next_cursor": 536, @@ -8444,27 +8451,27 @@ { "tx_index": 62, "dispense_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8479,7 +8486,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -8493,27 +8500,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", + "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", "block_index": 147, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "destination": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 196, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "last_status_tx_hash": null, - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8528,7 +8535,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729682623, + "block_time": 1729707010, "asset_info": { "divisible": true, "asset_longname": null, @@ -8542,19 +8549,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "d72ea406bb710a65f7c7542caa8dcee3a52793da119c3b6817d4e7330693f136", + "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8562,7 +8569,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8577,7 +8584,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682597, + "block_time": 1729706974, "asset_info": { "divisible": true, "asset_longname": null, @@ -8591,19 +8598,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "959d48ac34574fc3d4ab70d7a43619d50149bd4e905c5577b31caac596d3e7a3", + "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", "block_index": 140, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce6b552ed4ad085ba7ef71bf048628d5a0d5d4ee7293dd68ba191548d1237d72", + "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8611,7 +8618,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8626,7 +8633,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729682583, + "block_time": 1729706969, "asset_info": { "divisible": true, "asset_longname": null, @@ -8645,10 +8652,10 @@ "result": [ { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8656,7 +8663,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -8669,10 +8676,10 @@ }, { "tx_index": 62, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8680,11 +8687,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -8693,10 +8700,10 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8704,7 +8711,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -8717,10 +8724,10 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8728,11 +8735,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -8741,10 +8748,10 @@ }, { "tx_index": 56, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8752,11 +8759,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -8771,14 +8778,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -8793,20 +8800,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "b8ee2f599a9d49cf0ad5d1d1b28467043a3a7c41c75dc389097bf81764469305", + "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -8821,20 +8828,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729682689, + "block_time": 1729707086, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "6dc5cf910e1f657a0314dd9b690b408b76871b7cf8d687b9a495e8cc2c251528", + "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -8849,20 +8856,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682685, + "block_time": 1729707072, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "8a90458b224f8692e3ffc20d2e650c54f871559d6c48069472c129bae62a4dde", + "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -8877,20 +8884,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682681, + "block_time": 1729707057, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", + "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "issuer": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "transfer": false, "callable": false, "call_date": 0, @@ -8905,7 +8912,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682676, + "block_time": 1729707053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8916,14 +8923,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "transfer": false, "callable": false, "call_date": 0, @@ -8938,7 +8945,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8947,16 +8954,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -8967,16 +8974,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" } ], @@ -8987,9 +8994,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "block_index": 138, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -8997,14 +9004,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682576, + "block_time": 1729706961, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "8923f49dae71d042bb5611402d79f20fa52a3e61162855aa19fe98857bfcd8f4", + "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", "block_index": 137, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9012,7 +9019,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682571, + "block_time": 1729706957, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9022,9 +9029,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "block_index": 138, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9032,17 +9039,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729682576, + "block_time": 1729706961, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9067,7 +9074,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9076,10 +9083,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9104,7 +9111,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729682563, + "block_time": 1729706948, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9116,10 +9123,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9144,7 +9151,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729682547, + "block_time": 1729706931, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9156,10 +9163,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9184,7 +9191,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729682542, + "block_time": 1729706927, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9196,10 +9203,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c98b17ac9dde441deb4e1043552e87e5887e9cac4d0e918d5e3086beb4ee6029", + "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9224,7 +9231,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729682521, + "block_time": 1729706906, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9242,22 +9249,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9266,22 +9273,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2c931bd120059027f5fffbb1cf0fed04824adc8d48c322d36e50e9ebb68922cc", + "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", "tx_index": 21, "block_index": 134, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682559, + "block_time": 1729706944, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9290,22 +9297,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "138c5212f6bbf8d706f88424357e7ab747874cf0f1319109c498cc52be47b198", + "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", "tx_index": 20, "block_index": 133, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682555, + "block_time": 1729706939, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9314,22 +9321,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "359c30e19e9d98f5150d411a8a9b671cecb64f4a5c1427bd8676f95407c6f330", + "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", "tx_index": 19, "block_index": 132, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "ecabd32412137837c1bb64b0aed4a05f1ddb7ebaeab02caaf0cf4fe9ad2ec16a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682551, + "block_time": 1729706935, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9338,22 +9345,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ba53cd3c00d1019d1b50204c486102b904b364bf02919d25a42979da7df404bb", + "tx_hash": "00ae9a87cf055baf3a423ca8542da114393af49566d7ba8813ea5a137e2212d6", "tx_index": 17, "block_index": 129, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "fairminter_tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682538, + "block_time": 1729706923, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9367,22 +9374,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, "block_index": 136, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -9399,8 +9406,8 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d", - "address": "bcrt1qjtq48hwntcx5463k2rgszgr4ts6w0xgdm6p44l" + "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", + "address": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe" }, { "vout": 2, @@ -9408,8 +9415,8 @@ "value": 100000, "confirmations": 40, "amount": 0.001, - "txid": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980", - "address": "bcrt1qp4es5rfe659k0lws7wxc8vw3r50qa3kt4qz4pt" + "txid": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", + "address": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu" } ], "next_cursor": null, @@ -9418,28 +9425,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139" + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" }, { - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54" + "tx_hash": "2e3539a7e624d565e115227f3e1ce0d2ceda8eadc192cd00942b0f68b13f940f" }, { - "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69" + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f" }, { - "tx_hash": "2791e2e308a2b1c1e7b6769d87cb7fb06e2eb8fe97681286d823378ee8994b85" + "tx_hash": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4" }, { - "tx_hash": "9f412c2a0eb172e04aeb2cecbbe34d0253bb97d4ee2a89ef5b3ebeda5bbd82b9" + "tx_hash": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece" }, { - "tx_hash": "ee4098f053d5cc0b7cb0356bd498c983b4bdc9bf6239a734af5d0ea14d728cd1" + "tx_hash": "dbf445eb4b00e0f435ff1684067857c017d517553d31908e9842e5cd5f0037cf" }, { - "tx_hash": "5643efa4e3683c11f348f36af35145d481827eac43ac58bb599acc2d425e04e1" + "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc" }, { - "tx_hash": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed" + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6" } ], "next_cursor": null, @@ -9447,8 +9454,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 4, - "tx_hash": "b5d6deaa91e93fa3e4bb821a406408c40560ee36370b59b2a1fc2ed8b03b9197" + "block_index": 1, + "tx_hash": "e3d1bd6cdb590367b2c0d2f4afdc5dd5c683580218cb6894eef968342f75ab11" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9459,17 +9466,17 @@ "value": 4949970000, "confirmations": 50, "amount": 49.4997, - "txid": "b8e13623dd93bc1b7ee2370a23f6b60a3f7212425ef367b6192112b43fcddb1d" + "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0260bdc0fe358f257f78ec3ec423be0645061a4bd9ac4777713cf0b96ea4452727" + "result": "02090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010180192c8679dee5a88c6c1e5020a32ddfe3b5c790d01eaf884de43b4fc4a94e010100000000ffffffff03e8030000000000001600144f05c52b2783836407de9a1525fede28bf24749600000000000000000c6a0ae4629855183ecd800ac4dced0827010000001600141c271ea9891c8626e5d0b35a9c8868f7fa8ab976024730440220636b9ba1f51f071cd83e22caba118437be32e31f8d75416858820425802a169802203a3f999c266047dd6a1c2f1a0f22ded832143cebe17688f590da920eb1779560012103b178c6a6f98921e6e1470bbc2f8a1abd6fff27b71a15a5fc81c9d68ce1fa3e4e00000000" + "result": "02000000000101a4e98d52a5df1bc18cdc98d8c1c34afbe125497930eca2aee488b72932062ba60100000000ffffffff03e8030000000000001600144ea467f94eaca52acac0ee04c5fd37938a96af4800000000000000000c6a0af3adabb38504da911c6bdced08270100000016001400d5152e52ecda510f62bc224a3ca073dad7b6820247304402203a9020efcb55ee1b110b98332546a3b5030d807ff754b083876e46d87af6956902201029b9cac9fc9ccbd49cb49009b692b69f5127448381c1b1e2d19ef675e488f9012102ab7e7a2ba1f07d9f8dfdb4260655d143756a34a46c5af3ab6fd63809268352e100000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58603 @@ -9492,27 +9499,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63 }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "quantity": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, "asset_info": { "divisible": true, @@ -9523,22 +9530,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -9548,22 +9555,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 196, - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -9573,30 +9580,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729682848.4038758, + "block_time": 1729707238.1041224, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "destination": "", "fee": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, - "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", + "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -9610,7 +9617,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, @@ -9619,19 +9626,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -9641,7 +9648,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, @@ -9650,27 +9657,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63 }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "quantity": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, "asset_info": { "divisible": true, @@ -9681,22 +9688,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "CREDIT", "params": { - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "asset": "XCP", "block_index": 196, "calling_function": "send", - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -9706,22 +9713,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "asset": "XCP", "block_index": 196, - "event": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "quantity": 10000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -9731,30 +9738,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 }, { - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729682848.4038758, + "block_time": 1729707238.1041224, "btc_amount": 0, - "data": "020000000000000001000000000000271080f56a7774985dfdaa11b006e77a67e7586a030504", + "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", "destination": "", "fee": 10000, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", - "tx_hash": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", "tx_index": 63, - "utxos_info": "eff83d8a6e6b9c3d25708e3cc45e24a458dd35f81a2cc0e0395af5872a6054f9:1", + "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "memo": null, "asset_info": { "divisible": true, @@ -9768,7 +9775,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729682848.4038758 + "timestamp": 1729707238.1041224 } ], "next_cursor": null, @@ -9790,15 +9797,15 @@ "event_index": 550, "event": "NEW_BLOCK", "params": { - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", "block_index": 196, - "block_time": 1729682844, + "block_time": 1729707233, "difficulty": 545259519, - "previous_block_hash": "20e5890978a14ebde172543135a9f4c6912e263e0b210064cbe8932fbffcb6c8" + "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598" }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 544, @@ -9810,17 +9817,17 @@ "event_index": 551, "event": "NEW_TRANSACTION", "params": { - "block_hash": "6f56eded4422747a4a4a06c02e1fd7da56b01823a30906aeb2b2e0f30d9c81ad", + "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", "block_index": 196, - "block_time": 1729682844, + "block_time": 1729707233, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "fee": 0, - "source": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "utxos_info": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1 152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9830,9 +9837,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 545, @@ -9846,16 +9853,16 @@ "params": { "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "out_index": 0, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 277, @@ -9868,15 +9875,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 196, - "ledger_hash": "9b83862398c534c7d298b854d1bb590591d4e2a1718f4b5d53593523c26fc261", - "messages_hash": "ee838506391b5c6a62e8935a01db721a7b16b0d73b5b927edf88e45c8bcfd026", + "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", + "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", "transaction_count": 1, - "txlist_hash": "3794a278c70d3c8350a6106505a6887fa4565204cef886a0700bd85e4cb31b09", - "block_time": 1729682844 + "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", + "block_time": 1729707233 }, "tx_hash": null, "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 549, @@ -9889,12 +9896,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62 }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 548, @@ -9910,12 +9917,12 @@ "address": null, "asset": "XCP", "block_index": 196, - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 1500000000, "tx_index": 62, - "utxo": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", - "utxo_address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", - "block_time": 1729682844, + "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -9925,9 +9932,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 553, @@ -9939,16 +9946,16 @@ "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "asset": "XCP", "block_index": 196, "calling_function": "dispense", - "event": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "quantity": 66, "tx_index": 62, "utxo": null, "utxo_address": null, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -9958,9 +9965,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 557, @@ -9974,14 +9981,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "memo": null, "quantity": 10000, - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "status": "valid", - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", "tx_index": 55, - "block_time": 1729682809, + "block_time": 1729707189, "asset_info": { "divisible": true, "asset_longname": null, @@ -9991,9 +9998,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "21114ccdd1e8ca0f3dbbfd90c514fea74024a997545f6405f2ab53f2b4ce4139", + "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", "block_index": 189, - "block_time": 1729682809 + "block_time": 1729707189 } ], "next_cursor": null, @@ -10007,15 +10014,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "tx_index": 56, - "block_time": 1729682813, + "block_time": 1729707194, "asset_info": { "divisible": true, "asset_longname": null, @@ -10025,9 +10032,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "817ca1bc541b29e1ba49ea19438074420fc8e1e0bc23d6d6e7c33377e6ffe1a8", + "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", "block_index": 190, - "block_time": 1729682813 + "block_time": 1729707194 } ], "next_cursor": 509, @@ -10050,20 +10057,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "status": "valid", - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "tx_index": 60, - "block_time": 1729682830, + "block_time": 1729707220, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "b0b1b1029064c869ab991e48a5d1e7f6325559bb57fe7cb81747035cc74fef54", + "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", "block_index": 194, - "block_time": 1729682830 + "block_time": 1729707220 } ], "next_cursor": null, @@ -10080,15 +10087,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "tx_index": 41, - "block_time": 1729682653, + "block_time": 1729707040, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10102,9 +10109,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "80bf156a434ee1dce0849fb9a6b84de550421f85e8a6fbf8df4a9cdd9abbf3cc", + "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", "block_index": 154, - "block_time": 1729682653 + "block_time": 1729707040 } ], "next_cursor": null, @@ -10125,11 +10132,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729682693 + "block_time": 1729707090 }, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "block_index": 161, - "block_time": 1729682693 + "block_time": 1729707090 } ], "next_cursor": 381, @@ -10152,22 +10159,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", "transfer": false, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "tx_index": 48, - "block_time": 1729682693, + "block_time": 1729707090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "e8cb3a92078cb3adf5b5560fc8b7d5beb8f91f50365728e4532ed7f4d1e0aff6", + "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", "block_index": 161, - "block_time": 1729682693 + "block_time": 1729707090 } ], "next_cursor": 388, @@ -10182,12 +10189,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q85asgu0qwytswwfplgt6dmusqy768nh28v3kdj", + "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", "status": "valid", "tag": "64657374726f79", - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "tx_index": 61, - "block_time": 1729682834, + "block_time": 1729707224, "asset_info": { "divisible": true, "asset_longname": null, @@ -10197,9 +10204,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "2e1f097bc60d13fb112324acad8ef1888f9fa1636eacdbbf761aa69202c69469", + "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", "block_index": 195, - "block_time": 1729682834 + "block_time": 1729707224 } ], "next_cursor": 157, @@ -10224,11 +10231,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "open", - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "tx_index": 59, - "block_time": 1729682826, + "block_time": 1729707215, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10252,9 +10259,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1f9a2b431078ea773fb1284e1b138a839f9b282775b923ef1982e1bb99f6832a", + "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", "block_index": 193, - "block_time": 1729682826 + "block_time": 1729707215 } ], "next_cursor": 516, @@ -10272,20 +10279,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc", + "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", "tx0_index": 51, - "tx1_address": "bcrt1q7448waycth765ydsqmnh5el8tp4qxpgyanrawe", + "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "tx1_index": 54, - "block_time": 1729682804, + "block_time": 1729707185, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10304,9 +10311,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4db924831c09ca9e974aa20e9e7c19288425118f430219fd7e98c6660a5b0e69", + "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", "block_index": 188, - "block_time": 1729682804 + "block_time": 1729707185 } ], "next_cursor": 475, @@ -10319,11 +10326,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f" + "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40" }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 } ], "next_cursor": 490, @@ -10336,11 +10343,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c" + "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d" }, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_time": 1729682800 + "block_time": 1729707181 } ], "next_cursor": null, @@ -10352,13 +10359,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", + "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", "status": "completed" }, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_time": 1729682800 + "block_time": 1729707181 } ], "next_cursor": 454, @@ -10372,18 +10379,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "order_match_id": "0a606bfccaa3e0b7c88505e80038c46881d378d3988b7c3e5163299cfdfdb6cc_7749a5f2933459a56841ab9df2235cb8f3194be25893ccc9b0e5a8761723186c", - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "status": "valid", - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "tx_index": 53, - "block_time": 1729682800, + "block_time": 1729707181, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "11836350cf6b59782578be45c40bdfe3395103978b2ab2ee1d62af501844af6c", + "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", "block_index": 187, - "block_time": 1729682800 + "block_time": 1729707181 } ], "next_cursor": null, @@ -10396,16 +10403,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "72f1626845dbce373902e1998d06979eb68a18803ff5596fa89cf5f54795695f", - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "tx_index": 58, - "block_time": 1729682822 + "block_time": 1729707202 }, - "tx_hash": "b3af4b8b7325872848a1e31315fcf4621bd62c307aad531cdc06ecc41dea9f7e", + "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", "block_index": 192, - "block_time": 1729682822 + "block_time": 1729707202 } ], "next_cursor": null, @@ -10418,13 +10425,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "block_time": 1729682719 + "order_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "block_time": 1729707105 }, "tx_hash": null, "block_index": 184, - "block_time": 1729682719 + "block_time": 1729707105 } ], "next_cursor": 460, @@ -10437,14 +10444,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "0254ee67a7505465dcc8e2e78b98c607530787b0b90b5e1cfbc352e78e548ecf_0fe16d5f3135721abc60178a9cc52308bf5486e060da33d0d389ad28dc90c53a", - "tx0_address": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "tx1_address": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", - "block_time": 1729682719 + "order_match_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "block_time": 1729707105 }, "tx_hash": null, "block_index": 184, - "block_time": 1729682719 + "block_time": 1729707105 } ], "next_cursor": null, @@ -10462,14 +10469,14 @@ "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "origin": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "satoshirate": 1, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "tx_index": 33, - "block_time": 1729682619, + "block_time": 1729707005, "asset_info": { "divisible": true, "asset_longname": null, @@ -10482,9 +10489,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "block_index": 146, - "block_time": 1729682619 + "block_time": 1729707005 } ], "next_cursor": 254, @@ -10499,9 +10506,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": 0, - "tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", + "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", "asset_info": { "divisible": true, "asset_longname": null, @@ -10511,9 +10518,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 302, @@ -10527,13 +10534,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mh5rYEPqcShWQTYGTkNhKtkaSqPuBiyUC8", + "destination": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", "dispense_quantity": 10, - "dispenser_tx_hash": "9e7819b7b00a0ba9e440ac96b566ca7f6a0f9712536f9e32ea54f74bbdc1eef1", - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", - "tx_hash": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", + "dispenser_tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx_hash": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", "tx_index": 31, - "block_time": 1729682610, + "block_time": 1729706987, "asset_info": { "divisible": true, "asset_longname": null, @@ -10543,9 +10550,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "919e3be1cca1568334dbb823d1212750cd9c3bee32e2005884a673c9bdb81c8f", + "tx_hash": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", "block_index": 144, - "block_time": 1729682610 + "block_time": 1729706987 } ], "next_cursor": null, @@ -10560,14 +10567,14 @@ "asset": "XCP", "block_index": 196, "btc_amount": 1000, - "destination": "bcrt1qrsn3a2vfrjrzdewskddfezrg7lag4wtkdsm2k5", + "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "b65be071c06828bab3ff36d39e4fd8b0ddd666c76e89b0a88f71b2a253be6a7b", - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -10578,9 +10585,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 280, @@ -10595,19 +10602,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qfuzu22e8swpkgp77ng2jtlk79zljgaykhg8yaz", + "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "tx_index": 25, "value": 66600.0, - "block_time": 1729682576, + "block_time": 1729706961, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "6df7898f1f34723cbc0a3c27656f33549121832ca6c59b3caf281cb903e68441", + "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", "block_index": 138, - "block_time": 1729682576 + "block_time": 1729706961 } ], "next_cursor": 213, @@ -10638,12 +10645,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "start_block": 0, "status": "open", - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "tx_index": 42, - "block_time": 1729682667, + "block_time": 1729707044, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10651,9 +10658,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "cc7698b1696d01c714a04af0be76922983586f6d5f0f78ee8cfaa41e66e07748", + "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", "block_index": 155, - "block_time": 1729682667 + "block_time": 1729707044 } ], "next_cursor": 196, @@ -10666,11 +10673,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d3b5280b2c391009036370dff2edf4609febc26c97a90b6b52a04f21d5e16a3d" + "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244" }, "tx_hash": null, "block_index": 130, - "block_time": 1729682542 + "block_time": 1729706927 } ], "next_cursor": 110, @@ -10686,17 +10693,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "b880cd85331de7eec48c8d3193d2b27b3c2b8c25e78ef01f434f19e933fbe9ae", + "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", "paid_quantity": 34, - "source": "bcrt1q3knfrr8nnn5wqjpz8z3x6hp2f3x20hem668e0a", + "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", "status": "valid", - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "tx_index": 23, - "block_time": 1729682567, + "block_time": 1729706952, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, @@ -10704,9 +10711,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "24a34a2d2639245c45546e690233ee15a9455d0beb772da5b237abb0a716196f", + "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", "block_index": 136, - "block_time": 1729682567 + "block_time": 1729706952 } ], "next_cursor": 190, @@ -10720,28 +10727,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939:1", + "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "status": "valid", - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "tx_index": 39, - "block_time": 1729682644, + "block_time": 1729707031, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d505b35fc68a40582b93622e3af58d8ef11fd10f00c7f73be1334be7c289d939", + "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", "block_index": 152, - "block_time": 1729682644 + "block_time": 1729707031 } ], "next_cursor": 296, @@ -10755,28 +10762,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qfgvdyfrq236gjewd8xjetuqa2tjj3x73md2t65", + "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "19193b62cffa7ae94548611787ed545d8b674389bb5f95aaa9835bbfa99149ed:0", + "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", "status": "valid", - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "tx_index": 38, - "block_time": 1729682640, + "block_time": 1729707027, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3hqwgeyte57sjf43amca9aceqzs7wthzazk9yl", + "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c6523630844e8d52bdc316ac31f42037b3d05a78d7b8a87c5b17ef54e7658a7f", + "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", "block_index": 151, - "block_time": 1729682640 + "block_time": 1729707027 } ], "next_cursor": null, @@ -10790,14 +10797,14 @@ "params": { "asset": "XCP", "block_index": 196, - "destination": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422:0", + "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", "msg_index": 1, "quantity": 1500000000, - "source": "014ea9c44f3be44d88af1ed090c7b5e3df2da320501e6c8ca8e5de79862c1980:1", + "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", "status": "valid", - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "tx_index": 62, - "block_time": 1729682844, + "block_time": 1729707233, "asset_info": { "divisible": true, "asset_longname": null, @@ -10807,9 +10814,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "152744498d15b94040a254421fde336f15618c88ac84df43a286387ef74fb422", + "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", "block_index": 196, - "block_time": 1729682844 + "block_time": 1729707233 } ], "next_cursor": 555, @@ -10824,17 +10831,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtq4pzlcqsdtaav77jd4f3me5upc73ultcun57a", + "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", "status": "valid", - "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", + "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", "tx_index": 9, - "block_time": 1729682503, + "block_time": 1729706888, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "bcdb41078a7ab6eac2cca1d430d0f2c1c9c87af968d26e41d65a547cf3205039", + "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", "block_index": 121, - "block_time": 1729682503 + "block_time": 1729706888 } ], "next_cursor": 65, diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index 8883a4fd6c..b5de58fac6 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -16,6 +16,7 @@ Backwards-incompatible change - Correctly catch invalid pubkey in compose API - Don't run reparse if unnecessary +- Fix `message_data` when retrieving information about fairminter or fairmint transactions ## Codebase From 71e2ae7f8cad5bc29b83f6214d1e6dfd1d1384c7 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Wed, 23 Oct 2024 14:33:52 -0400 Subject: [PATCH 48/71] Ruff --- .../counterpartycore/lib/api/api_server.py | 11 +++++------ .../counterpartycore/lib/api/api_v1.py | 17 ++++++++--------- .../counterpartycore/lib/api/api_watcher.py | 5 ++--- .../0002.add_default_values_to_issuances.py | 3 +-- .../0004.create_address_events_table.py | 3 +-- .../counterpartycore/lib/api/queries.py | 5 ++--- .../counterpartycore/lib/api/util.py | 3 +-- .../counterpartycore/lib/api/wsgi.py | 7 +++---- .../lib/telemetry/clients/influxdb.py | 3 +-- .../counterpartycore/lib/telemetry/oneshot.py | 3 +-- .../counterpartycore/lib/telemetry/util.py | 1 - .../counterpartycore/test/regtest/genapidoc.py | 1 - .../counterpartycore/test/regtest/regtestcli.py | 1 - 13 files changed, 25 insertions(+), 38 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 5a0c0bb968..b9d893bfae 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -10,12 +10,6 @@ import flask import requests from bitcoin.wallet import CBitcoinAddressError -from flask import Flask, request -from flask_httpauth import HTTPBasicAuth -from sentry_sdk import capture_exception -from sentry_sdk import configure_scope as configure_sentry_scope -from sentry_sdk import start_span as start_sentry_span - from counterpartycore import server from counterpartycore.lib import ( config, @@ -35,6 +29,11 @@ to_json, ) from counterpartycore.lib.database import APIDBConnectionPool +from flask import Flask, request +from flask_httpauth import HTTPBasicAuth +from sentry_sdk import capture_exception +from sentry_sdk import configure_scope as configure_sentry_scope +from sentry_sdk import start_span as start_sentry_span multiprocessing.set_start_method("spawn", force=True) diff --git a/counterparty-core/counterpartycore/lib/api/api_v1.py b/counterparty-core/counterpartycore/lib/api/api_v1.py index 0881241d00..ff021a2440 100644 --- a/counterparty-core/counterpartycore/lib/api/api_v1.py +++ b/counterparty-core/counterpartycore/lib/api/api_v1.py @@ -15,17 +15,9 @@ import threading import time +import counterpartycore.lib.sentry as sentry # noqa: F401 import flask import jsonrpc -from flask import request -from flask_httpauth import HTTPBasicAuth -from jsonrpc import dispatcher -from jsonrpc.exceptions import JSONRPCDispatchException -from sentry_sdk import configure_scope as configure_sentry_scope -from werkzeug.serving import make_server -from xmltodict import unparse as serialize_to_xml - -import counterpartycore.lib.sentry as sentry # noqa: F401 from counterpartycore.lib import ( backend, config, @@ -66,6 +58,13 @@ is_docker, is_force_enabled, ) +from flask import request +from flask_httpauth import HTTPBasicAuth +from jsonrpc import dispatcher +from jsonrpc.exceptions import JSONRPCDispatchException +from sentry_sdk import configure_scope as configure_sentry_scope +from werkzeug.serving import make_server +from xmltodict import unparse as serialize_to_xml D = decimal.Decimal diff --git a/counterparty-core/counterpartycore/lib/api/api_watcher.py b/counterparty-core/counterpartycore/lib/api/api_watcher.py index deccc7a1c3..92e88a856b 100644 --- a/counterparty-core/counterpartycore/lib/api/api_watcher.py +++ b/counterparty-core/counterpartycore/lib/api/api_watcher.py @@ -6,12 +6,11 @@ from random import randrange import apsw -from yoyo import get_backend, read_migrations -from yoyo.exceptions import LockTimeout - from counterpartycore.lib import blocks, config, database, exceptions, ledger from counterpartycore.lib.api import util from counterpartycore.lib.util import format_duration +from yoyo import get_backend, read_migrations +from yoyo.exceptions import LockTimeout logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py b/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py index 09b6d142aa..e2049e9a67 100644 --- a/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py +++ b/counterparty-core/counterpartycore/lib/api/migrations/0002.add_default_values_to_issuances.py @@ -4,9 +4,8 @@ import logging import os -from yoyo import step - from counterpartycore.lib import config +from yoyo import step logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py b/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py index df1ac86b15..a601a306be 100644 --- a/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py +++ b/counterparty-core/counterpartycore/lib/api/migrations/0004.create_address_events_table.py @@ -4,10 +4,9 @@ import logging import os -from yoyo import step - from counterpartycore.lib import config from counterpartycore.lib.api.api_watcher import update_address_events +from yoyo import step logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index bcb1d1e819..7e5892fec1 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -2,11 +2,10 @@ import typing from typing import Literal -from flask import request -from sentry_sdk import start_span as start_sentry_span - from counterpartycore.lib import config from counterpartycore.lib.api.util import divide +from flask import request +from sentry_sdk import start_span as start_sentry_span OrderStatus = Literal["all", "open", "expired", "filled", "cancelled"] OrderMatchesStatus = Literal["all", "pending", "completed", "expired"] diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index 6081989051..3a74be5d68 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -11,8 +11,6 @@ import flask import requests import werkzeug -from docstring_parser import parse as parse_docstring - from counterpartycore.lib import ( backend, config, @@ -23,6 +21,7 @@ util, ) from counterpartycore.lib.api import compose +from docstring_parser import parse as parse_docstring D = decimal.Decimal logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index 44445f5cb3..f2b5063a49 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -9,16 +9,15 @@ import gunicorn.app.base import waitress import waitress.server +from counterpartycore.lib import backend, config, ledger, log, util +from counterpartycore.lib.api.util import get_backend_height +from counterpartycore.lib.database import get_db_connection from flask import request from gunicorn import util as gunicorn_util from gunicorn.arbiter import Arbiter from gunicorn.errors import AppImportError from werkzeug.serving import make_server -from counterpartycore.lib import backend, config, ledger, log, util -from counterpartycore.lib.api.util import get_backend_height -from counterpartycore.lib.database import get_db_connection - multiprocessing.set_start_method("spawn", force=True) logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py b/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py index 4f1424c0cb..66329094f8 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py +++ b/counterparty-core/counterpartycore/lib/telemetry/clients/influxdb.py @@ -1,8 +1,7 @@ import influxdb_client -from influxdb_client.client.write_api import SYNCHRONOUS - from counterpartycore.lib import config from counterpartycore.lib.telemetry.util import ID +from influxdb_client.client.write_api import SYNCHRONOUS from .interface import TelemetryClientI diff --git a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py index 5b7fcb9c22..b7258d15a0 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/oneshot.py +++ b/counterparty-core/counterpartycore/lib/telemetry/oneshot.py @@ -1,13 +1,12 @@ import logging -from sentry_sdk import capture_exception - from counterpartycore.lib import config, database from counterpartycore.lib.telemetry.clients.influxdb import TelemetryClientInfluxDB from counterpartycore.lib.telemetry.collectors.influxdb import ( TelemetryCollectorInfluxDB, ) from counterpartycore.lib.util import SingletonMeta +from sentry_sdk import capture_exception logger = logging.getLogger(config.LOGGER_NAME) diff --git a/counterparty-core/counterpartycore/lib/telemetry/util.py b/counterparty-core/counterpartycore/lib/telemetry/util.py index ce3ff5c733..ee0c3dc6ee 100644 --- a/counterparty-core/counterpartycore/lib/telemetry/util.py +++ b/counterparty-core/counterpartycore/lib/telemetry/util.py @@ -4,7 +4,6 @@ from uuid import uuid4 import appdirs - from counterpartycore.lib import config start_time = time.time() diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 5f771ebb28..7a1b7ce4db 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -6,7 +6,6 @@ import requests import sh import yaml - from counterpartycore.lib import database from counterpartycore.lib.api import routes diff --git a/counterparty-core/counterpartycore/test/regtest/regtestcli.py b/counterparty-core/counterpartycore/test/regtest/regtestcli.py index 0c67a4d2db..e4992b5166 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestcli.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestcli.py @@ -3,7 +3,6 @@ import json import sh - from counterpartycore.lib import arc4 D = decimal.Decimal From 5af260f9f1a6e002e09729d1a97ac84300cfd745 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 18:53:59 +0000 Subject: [PATCH 49/71] fix tests --- counterparty-core/counterpartycore/lib/check.py | 4 ++-- .../test/fixtures/scenarios/multisig_1_of_2.log | 1 - .../test/fixtures/scenarios/multisig_1_of_3.log | 1 - .../test/fixtures/scenarios/multisig_2_of_2.log | 1 - .../test/fixtures/scenarios/multisig_2_of_3.log | 1 - .../test/fixtures/scenarios/multisig_3_of_3.log | 1 - .../test/fixtures/scenarios/parseblock_unittest_fixture.log | 1 - .../counterpartycore/test/fixtures/scenarios/simplesig.log | 1 - .../test/fixtures/scenarios/unittest_fixture.log | 2 -- 9 files changed, 2 insertions(+), 11 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 0253b24824..13f9d88c8d 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -916,13 +916,13 @@ class SanityError(Exception): pass -def asset_conservation(db, stop_event): +def asset_conservation(db, stop_event=None): logger.debug("Checking for conservation of assets.") with db: supplies = ledger.supplies(db) held = ledger.held(db) for asset in supplies.keys(): - if stop_event.is_set(): + if stop_event is not None and stop_event.is_set(): logger.debug("Stop event received. Exiting asset conservation check...") return asset_issued = supplies[asset] diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.log index b018ac3f2a..6086a2845b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_2.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.log index 5b1593cd1d..0905756c33 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_1_of_3.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.log index 5e18c6f089..6d59d40092 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_2.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.log index d49ce36ebd..b7c07ead64 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_2_of_3.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.log index 0f73803a8a..f671822078 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/multisig_3_of_3.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log index efcaa1c9aa..d4d870e878 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/parseblock_unittest_fixture.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log index 0536617d00..bb50e0d223 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/simplesig.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log index e59c197b33..ea5463e66d 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios/unittest_fixture.log @@ -1,4 +1,3 @@ -Creating connection to `:memory:`... Initializing database... Initialising asset cache... Asset cache initialised in 0.00 seconds @@ -18,7 +17,6 @@ TX Construct - Transaction constructed. Issuance of 0 LOCKED by mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc [344dcc8909ca3a137630726d0071dfd2df4f7c855bac150c7d3a8367835c90bc] (valid) TX Construct - Transaction constructed. Initialising orders cache... -Creating connection to `:memory:`... Order opened for 100000000 XCP at mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc (4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8) [open] TX Construct - Transaction constructed. Send DIVISIBLE from mn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc to mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns (6e91ae23de2035e3e28c3322712212333592a1f666bcff9dd91aec45d5ea2753) [valid] From 5fb160f5f3a4c1751b67db22d17f48a780fa2ed1 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 19:04:32 +0000 Subject: [PATCH 50/71] update release notes --- release-notes/release-notes-v10.5.1.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index b5de58fac6..5af5b6bf3c 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -17,6 +17,7 @@ Backwards-incompatible change - Correctly catch invalid pubkey in compose API - Don't run reparse if unnecessary - Fix `message_data` when retrieving information about fairminter or fairmint transactions +- Use `threading.Event()` to cleanly stop Threads and subprocesses started by `counterparty-server` ## Codebase From f3b9bcced128ab82b4a3184038e3d4eed6d297db Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 19:15:00 +0000 Subject: [PATCH 51/71] Fix regtest --- counterparty-core/counterpartycore/lib/database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 5bfa8499ae..20a3152d0a 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -54,9 +54,9 @@ def check_wal_file(db_file): def get_db_connection(db_file, read_only=True, check_wal=False): """Connects to the SQLite database, returning a db `Connection` object""" - if db_file == config.DATABASE: + if hasattr(config, "DATABASE") and db_file == config.DATABASE: db_file_name = "Ledger DB" - elif db_file == config.API_DATABASE: + elif hasattr(config, "API_DATABASE") and db_file == config.API_DATABASE: db_file_name = "API DB" else: db_file_name = db_file From 287f12f5a5b94e48f54de8f9d3b3d1463214725d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Wed, 23 Oct 2024 19:30:58 +0000 Subject: [PATCH 52/71] Fix regtest --- counterparty-core/counterpartycore/lib/database.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/database.py b/counterparty-core/counterpartycore/lib/database.py index 20a3152d0a..e5661b1151 100644 --- a/counterparty-core/counterpartycore/lib/database.py +++ b/counterparty-core/counterpartycore/lib/database.py @@ -60,7 +60,8 @@ def get_db_connection(db_file, read_only=True, check_wal=False): db_file_name = "API DB" else: db_file_name = db_file - logger.trace(f"Creating connection to {db_file_name}...") + if hasattr(logger, "trace"): + logger.trace(f"Creating connection to {db_file_name}...") if not read_only and check_wal: try: From ce560651b259aa509e11e82c00dac03438a87f99 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 09:14:21 +0000 Subject: [PATCH 53/71] Accept only one valid dispenser --- .../counterpartycore/lib/messages/dispense.py | 20 +++++++++++++++---- .../counterpartycore/protocol_changes.json | 7 +++++++ .../fixtures/contract_vectors/dispenser.py | 4 ++-- 3 files changed, 25 insertions(+), 6 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/dispense.py b/counterparty-core/counterpartycore/lib/messages/dispense.py index 736b2d49df..7674e2ccb9 100644 --- a/counterparty-core/counterpartycore/lib/messages/dispense.py +++ b/counterparty-core/counterpartycore/lib/messages/dispense.py @@ -27,24 +27,36 @@ def get_must_give(db, dispenser, btc_amount, block_index=None): def validate(db, _source, destination, quantity): problems = [] + if not util.enabled("enable_dispense_tx"): problems.append("dispense tx is not enabled") + return problems + dispensers = ledger.get_dispensers(db, address=destination) if len(dispensers) == 0: problems.append("address doesn't have any open dispenser") + return problems + for dispenser in dispensers: + dispenser_problems = [] if dispenser["status"] != dispenser_module.STATUS_OPEN: - problems.append("dispenser is not open") + dispenser_problems.append(f"dispenser for {dispenser['asset']} is not open") if dispenser["give_remaining"] == 0: - problems.append("dispenser is empty") + dispenser_problems.append(f"dispenser for {dispenser['asset']} is empty") else: try: must_give = get_must_give(db, dispenser, quantity) * dispenser["give_quantity"] logger.debug("must_give: %s", must_give) if must_give > dispenser["give_remaining"]: - problems.append("dispenser doesn't have enough asset to give") + dispenser_problems.append( + f"dispenser for {dispenser['asset']} doesn't have enough asset to give" + ) except exceptions.NoPriceError as e: - problems.append(str(e)) + dispenser_problems.append(str(e)) + # no error if at least one dispenser is valid + if len(dispenser_problems) == 0 and util.enabled("accept_only_one_valid_dispenser"): + return [] + problems += dispenser_problems return problems diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index af48992f88..1506060dde 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -637,5 +637,12 @@ } } } + }, + "accept_only_one_valid_dispenser": { + "minimum_version_major": 11, + "minimum_version_minor": 1, + "minimum_version_revision": 0, + "block_index": 966000, + "testnet_block_index": 2925800 } } diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py index 461af4cc47..ac372beb80 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/dispenser.py @@ -311,8 +311,8 @@ "error": ( exceptions.ComposeError, [ - "dispenser doesn't have enough asset to give", - "dispenser doesn't have enough asset to give", + "dispenser for XCP doesn't have enough asset to give", + "dispenser for TESTDISP doesn't have enough asset to give", ], ), }, From b13c749e002a0113c7f43a7becb7b8b464c0deae Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 09:37:41 +0000 Subject: [PATCH 54/71] Fix asset_events filter --- counterparty-core/counterpartycore/lib/api/queries.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 0c3032c7c9..2b86295dbf 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -1166,7 +1166,11 @@ def prepare_issuance_where(asset_events, other_conditions=None): where = [other_conditions] if other_conditions else [] break if asset_event in typing.get_args(IssuancesAssetEvents): - where_status = {"asset_events__like": f"%{asset_event}%"} + if asset_event in ["open_fairminter", "fairmint"]: + # these event are always alone + where_status = {"asset_events": asset_event} + else: + where_status = {"asset_events__like": f"%{asset_event}%"} if other_conditions: where_status.update(other_conditions) where.append(where_status) From 97152bf21c945bba16b170a64c7b008ece15f6cd Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 10:35:23 +0000 Subject: [PATCH 55/71] Fix Lock File Not Found Error --- counterparty-core/counterpartycore/lib/backend/rsfetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py index 4bd0054610..1e2f9ee66f 100644 --- a/counterparty-core/counterpartycore/lib/backend/rsfetcher.py +++ b/counterparty-core/counterpartycore/lib/backend/rsfetcher.py @@ -79,10 +79,10 @@ def release_lockfile(self): if not self.lockfile.closed: fcntl.flock(self.lockfile, fcntl.LOCK_UN) self.lockfile.close() + os.remove(self.lockfile_path) logger.debug("RSFetcher - Lockfile released.") else: logger.debug("RSFetcher - Lockfile was already closed.") - os.remove(self.lockfile_path) def start(self, start_height=0): logger.info("Starting RSFetcher thread...") From 9eae661355017033b8c8e27a185469c21b4f4782 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 13:50:03 +0000 Subject: [PATCH 56/71] Add regtest test --- apiary.apib | 5021 +++++++++-------- .../test/regtest/apidoc/apicache.json | 4613 +++++++-------- .../test/regtest/regtestnode.py | 3 + .../scenarios/scenario_17_dispenser.py | 165 + .../regtest/scenarios/scenario_5_dispenser.py | 9 +- .../test/regtest/testscenarios.py | 6 +- 6 files changed, 5135 insertions(+), 4682 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py diff --git a/apiary.apib b/apiary.apib index 4397785a09..8bac5984a1 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-23 18:14:10.882265. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-24 13:37:02.909694. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -177,22 +177,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 550, + "event_index": 564, "event": "NEW_BLOCK", "params": { - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_index": 196, - "block_time": 1729707233, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_index": 198, + "block_time": 1729777001, "difficulty": 545259519, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598" + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28" }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 544, - "result_count": 96 + "next_cursor": 556, + "result_count": 98 } ``` @@ -202,20 +202,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 551, + "event_index": 565, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_index": 196, - "block_time": 1729707233, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_index": 198, + "block_time": 1729777001, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "fee": 0, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -225,13 +225,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 545, - "result_count": 63 + "next_cursor": 557, + "result_count": 65 } ``` @@ -241,25 +241,25 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 552, + "event_index": 566, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "out_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 277, - "result_count": 4 + "next_cursor": 558, + "result_count": 5 } ``` @@ -269,23 +269,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 549, - "result_count": 96 + "next_cursor": 563, + "result_count": 98 } ``` @@ -295,20 +295,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 548, - "result_count": 50 + "next_cursor": 562, + "result_count": 52 } ``` @@ -320,19 +320,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 556, + "event_index": 570, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 196, - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "block_index": 198, + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -342,13 +342,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 553, - "result_count": 56 + "next_cursor": 567, + "result_count": 57 } ``` @@ -358,19 +358,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -380,13 +380,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 557, - "result_count": 71 + "next_cursor": 571, + "result_count": 72 } ``` @@ -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": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "memo": null, "quantity": 10000, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "status": "valid", - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", "tx_index": 55, - "block_time": 1729707189, + "block_time": 1729776956, "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": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", "block_index": 189, - "block_time": 1729707189 + "block_time": 1729776956 } ], "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": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "tx_index": 56, - "block_time": 1729707194, + "block_time": 1729776961, "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": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "block_time": 1729707194 + "block_time": 1729776961 } ], "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": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "status": "valid", - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "block_time": 1729707220 + "block_time": 1729776976 } ], "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": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "tx_index": 41, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "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": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "block_time": 1729707040 + "block_time": 1729776829 } ], "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": 1729707090 + "block_time": 1729776858 }, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "block_index": 161, - "block_time": 1729707090 + "block_time": 1729776858 } ], "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": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", "transfer": false, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "tx_index": 48, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "block_index": 161, - "block_time": 1729707090 + "block_time": 1729776858 } ], "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": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", "tag": "64657374726f79", - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "tx_index": 61, - "block_time": 1729707224, + "block_time": 1729776979, "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": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "block_index": 195, - "block_time": 1729707224 + "block_time": 1729776979 } ], "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": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "open", - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "tx_index": 59, - "block_time": 1729707215, + "block_time": 1729776972, "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": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "block_time": 1729707215 + "block_time": 1729776972 } ], "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": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "tx0_index": 51, - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx1_index": 54, - "block_time": 1729707185, + "block_time": 1729776953, "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": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "block_index": 188, - "block_time": 1729707185 + "block_time": 1729776953 } ], "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": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40" + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b" }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_time": 1729707202 + "block_time": 1729776967 } ], "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": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d" + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a" }, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "block_time": 1729707181 + "block_time": 1729776949 } ], "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": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "status": "completed" }, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "block_time": 1729707181 + "block_time": 1729776949 } ], "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": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "status": "valid", - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "tx_index": 53, - "block_time": 1729707181, + "block_time": 1729776949, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "block_time": 1729707181 + "block_time": 1729776949 } ], "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": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "tx_index": 58, - "block_time": 1729707202 + "block_time": 1729776967 }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_time": 1729707202 + "block_time": 1729776967 } ], "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": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "block_time": 1729707105 + "order_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "block_time": 1729776882 }, "tx_hash": null, "block_index": 184, - "block_time": 1729707105 + "block_time": 1729776882 } ], "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": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "block_time": 1729707105 + "order_match_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "block_time": 1729776882 }, "tx_hash": null, "block_index": 184, - "block_time": 1729707105 + "block_time": 1729776882 } ], "next_cursor": null, @@ -981,42 +981,42 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 272, + "event_index": 553, "event": "OPEN_DISPENSER", "params": { - "asset": "XCP", - "block_index": 146, + "asset": "TESTLOCKDESC", + "block_index": 196, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "satoshirate": 1, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "tx_index": 33, - "block_time": 1729707005, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_index": 62, + "block_time": 1729776983, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "block_index": 146, - "block_time": 1729707005 + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 196, + "block_time": 1729776983 } ], - "next_cursor": 254, - "result_count": 4 + "next_cursor": 272, + "result_count": 5 } ``` @@ -1026,15 +1026,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -1044,13 +1044,13 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 302, - "result_count": 7 + "next_cursor": 560, + "result_count": 8 } ``` @@ -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": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", + "destination": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", "dispense_quantity": 10, - "dispenser_tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "tx_hash": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", + "dispenser_tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx_hash": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", "tx_index": 31, - "block_time": 1729706987, + "block_time": 1729776791, "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": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", + "tx_hash": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", "block_index": 144, - "block_time": 1729706987 + "block_time": 1729776791 } ], "next_cursor": null, @@ -1097,20 +1097,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,13 +1121,13 @@ 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": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 280, - "result_count": 4 + "next_cursor": 561, + "result_count": 5 } ``` @@ -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": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "tx_index": 25, "value": 66600.0, - "block_time": 1729706961, + "block_time": 1729776757, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "block_index": 138, - "block_time": 1729706961 + "block_time": 1729776757 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "start_block": 0, "status": "open", - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "block_index": 155, - "block_time": 1729707044 + "block_time": 1729776834 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244" + "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3" }, "tx_hash": null, "block_index": 130, - "block_time": 1729706927 + "block_time": 1729776728 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "paid_quantity": 34, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "status": "valid", - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "block_index": 136, - "block_time": 1729706952 + "block_time": 1729776750 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "tx_index": 39, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "block_index": 152, - "block_time": 1729707031 + "block_time": 1729776822 } ], "next_cursor": 296, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", + "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", "status": "valid", - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "tx_index": 38, - "block_time": 1729707027, + "block_time": 1729776818, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "block_index": 151, - "block_time": 1729707027 + "block_time": 1729776818 } ], "next_cursor": null, @@ -1369,19 +1369,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 558, + "event_index": 572, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 196, - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "block_index": 198, + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "msg_index": 1, "quantity": 1500000000, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "status": "valid", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,12 +1391,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 555, + "next_cursor": 569, "result_count": 9 } ``` @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", + "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", "status": "valid", - "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", + "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", "tx_index": 9, - "block_time": 1729706888, + "block_time": 1729776691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", + "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", "block_index": 121, - "block_time": 1729706888 + "block_time": 1729776691 } ], "next_cursor": 65, @@ -1464,7 +1464,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `196` (str, optional) - The index of the most recent block to return + + cursor: `198` (str, optional) - The index of the most recent block to return + Default: `None` + limit: `5` (int, optional) - The number of blocks to return + Default: `10` @@ -1481,68 +1481,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", "difficulty": 545259519, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, "confirmed": true }, { - "block_index": 195, - "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", - "block_time": 1729707224, - "previous_block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", + "block_index": 197, + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_time": 1729776988, + "previous_block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", "difficulty": 545259519, - "ledger_hash": "61d7662817cf15d3d892545de3870004d4191aeccba1ace111995a818f7566e2", - "txlist_hash": "6e6e7b7a088ebff6b433713b6a665e9d1bf3a99b8dc72f950796afcbd898b8db", - "messages_hash": "471896ab6baf5db07797d7f2ded0f36290ba5e092111f02cdce8f2d9900ded11", + "ledger_hash": "b30038c228d73eb9c88b2ca971193a018ac3f68720c4647c7ec06c1b21bc5fb2", + "txlist_hash": "c64a47bfdcd98bd1e2ed69b137766afce61271dddfb151c1e3a085ec60b8bee9", + "messages_hash": "72b887cd33f43580d02780aaca8cf764552b57dc6f5a790d9bf8a82231a0d079", "transaction_count": 1, "confirmed": true }, { - "block_index": 194, - "block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", - "block_time": 1729707220, - "previous_block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_index": 196, + "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_time": 1729776983, + "previous_block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", "difficulty": 545259519, - "ledger_hash": "934402e63ccfe7db85edfbdda51e806474fef59c7a5a41c1d1d1d76817a571da", - "txlist_hash": "b05b7c0fcc05b6960ca55c171696399ca82482c1698614239bb7771312ddb1bd", - "messages_hash": "d3f105834888b1910869e34cc27428bdfaa0e29f1625326b13067f4b7c61d284", + "ledger_hash": "5088f90944f94cc039d253ccde60a0635dbca10e17275565cac4203ffb80c832", + "txlist_hash": "4b1dae0241f6d3bb217bbc48ac5bbfa06197c51e91fbf3568bed4c5b132c3f9f", + "messages_hash": "ee79ed17425c3e62d5abeff1fc65a45e788ef9b26e71d686a43fb5d26c29430c", "transaction_count": 1, "confirmed": true }, { - "block_index": 193, - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_time": 1729707215, - "previous_block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_index": 195, + "block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", + "block_time": 1729776979, + "previous_block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", "difficulty": 545259519, - "ledger_hash": "1d565434cde1ae1c18bce1a7d81b92ca59c41d3adfbfc8fad4204d89025a276b", - "txlist_hash": "07f3b8f789431d9fbba8309e7df2a6c19739bbff0c5485ec6efbaf9002ba56bb", - "messages_hash": "c38e0cc08d1dd4a4a8bab2ac39a0aa0c3dcb13de0cf0d340059371dd5bce4c24", + "ledger_hash": "b84b12aeeeceb76cfc87253fa6e675cb2e4cb3880d87941025f1f6702356178b", + "txlist_hash": "105256948da2848a4ed5f437f3142522bb1a7899af3ddba45f878b50ac0c35cb", + "messages_hash": "8a8395bdb32d083d6ce0216be6106ff9c429bd081fd8df140f820bf0a0f2d118", "transaction_count": 1, "confirmed": true }, { - "block_index": 192, - "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", - "block_time": 1729707202, - "previous_block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", + "block_index": 194, + "block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", + "block_time": 1729776976, + "previous_block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", "difficulty": 545259519, - "ledger_hash": "59c5b68a2a15d6dc351dd4f6b233f9b0890eba12abec79a454b106acd1ede8fd", - "txlist_hash": "bde702719a9df6e5038c4f540c7d2e922d64ed39efc1a70992d7a08aae7d6d29", - "messages_hash": "6ad1b388c7c1793be98b6be7c65090da3462ffe35c33aa7a6fda18139b4c3f83", + "ledger_hash": "b1d37c355f54287466651bfe7ef0a7ba89167cd55d20297ddd388f76295039d6", + "txlist_hash": "441d3c14334c4d1775e40efc63e1c91bfa5e90d5a79003fad5ab48b90b8b40b4", + "messages_hash": "f8d24ea6ba8929cdb4aabcf9d01ecd8659b2af3d4865fde51770dd277b2f3c43", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 191, - "result_count": 96 + "next_cursor": 193, + "result_count": 98 } ``` @@ -1561,7 +1561,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1572,14 +1572,14 @@ Return the information of a block ``` { "result": { - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", "difficulty": 545259519, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51` (str, required) - The index of the block to return + + block_hash: `2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1602,14 +1602,14 @@ Return the information of a block ``` { "result": { - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", "difficulty": 545259519, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, "confirmed": true } @@ -1621,8 +1621,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return - + cursor: `62` (str, optional) - The last transaction index to return + + block_index: `198` (int, required) - The index of the block to return + + cursor: `64` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1639,18 +1639,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1672,10 +1672,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block 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 + + cursor: `577` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1692,43 +1692,43 @@ Returns the events of a block { "result": [ { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null }, { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,18 +1739,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,10 +1785,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" } ], - "next_cursor": 558, + "next_cursor": 572, "result_count": 14 } ``` @@ -1798,7 +1798,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -1846,7 +1846,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + event: `CREDIT` (str, required) - The event to filter by + cursor (str, optional) - The last event index to return + Default: `None` @@ -1865,19 +1865,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,22 +1887,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,32 +1912,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" } ], "next_cursor": null, @@ -1950,7 +1950,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -1999,17 +1999,17 @@ Returns the credits of a block { "result": [ { - "block_index": 196, - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "block_index": 198, + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2020,17 +2020,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 196, + "block_index": 198, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2041,21 +2041,21 @@ Returns the credits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 196, + "block_index": 198, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2072,7 +2072,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2110,17 +2110,17 @@ Returns the debits of a block { "result": [ { - "block_index": 196, + "block_index": 198, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2131,21 +2131,21 @@ Returns the debits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 196, + "block_index": 198, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "object_id": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "block_index": 184, "confirmed": true, - "block_time": 1729707105 + "block_time": 1729776882 }, { "type": "order", - "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, "confirmed": true, - "block_time": 1729707105 + "block_time": 1729776882 }, { "type": "order_match", - "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "block_index": 184, "confirmed": true, - "block_time": 1729707105 + "block_time": 1729776882 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "status": "valid", "confirmed": true, - "block_time": 1729707202 + "block_time": 1729776967 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "block_index": 195, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729707224, + "block_time": 1729776979, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,14 +2329,14 @@ Returns the issuances of a block "result": [ { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -2351,7 +2351,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -2366,7 +2366,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -2384,11 +2384,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2396,7 +2396,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2408,11 +2408,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2420,11 +2420,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2442,7 +2442,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `196` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -2460,29 +2460,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2497,7 +2497,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2538,16 +2538,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -2586,10 +2586,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, "block_index": 155, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2614,7 +2614,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2651,22 +2651,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2705,17 +2705,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "block_index": 138, - "block_hash": "5237bc84dee9b3646f78af5ae6391524e7a1fc0f39590fcec01cfe46d2b01534", - "block_time": 1729706961, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_hash": "68baf18c771077f47e41655c136b0c40956558b9f38d4e33872e998a57a7739f", + "block_time": 1729776757, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b:1", + "utxos_info": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2740,25 +2740,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "block_hash": "738f28c86aa369eed0bfc906eb5fcfa866238b9dc276bf286ef4ccd562dc7113", - "block_time": 1729707181, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "050f629f829e0d36aced9240c4101f05a2bbb6d5a8e159acf8cb9fdf335533e4", + "block_time": 1729776949, + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "btc_amount": 2000, "fee": 10000, - "data": "0bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b37f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "data": "0bc614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b25415bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "supported": true, - "utxos_info": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c:0", + "utxos_info": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "status": "valid" } }, @@ -2773,23 +2773,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", - "block_time": 1729707202, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", + "block_time": 1729776967, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "supported": true, - "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", + "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "status": "valid" } }, @@ -2804,17 +2804,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "block_index": 195, - "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", - "block_time": 1729707224, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", + "block_time": 1729776979, + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9:1", + "utxos_info": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2843,37 +2843,37 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 33, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "block_index": 146, - "block_hash": "431b129b3b1e6e122376d40ac120f955cffce2abaaa5f4eff18c246edae230ab", - "block_time": 1729707005, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 196, + "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_time": 1729776983, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c000000000000000100000000000000010000000000002710000000000000000100804ea467f94eaca52acac0ee04c5fd37938a96af48", + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48:1", + "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, "message_data": { - "asset": "XCP", + "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, "mainchainrate": 1, "dispenser_status": 0, "action_address": null, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": null, "status": "valid", "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, "give_quantity_normalized": "0.00000001", "escrow_quantity_normalized": "0.00010000" @@ -2889,18 +2889,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2920,17 +2920,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "block_hash": "767213c5ba3c9679f8784ca2c376ac0ad989ab751ad128db4a82c630e61c361b", - "block_time": 1729707040, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "46325a8e604e6aa924525e4ce69577c3693626036561464e45561406eb281b89", + "block_time": 1729776829, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e:1", + "utxos_info": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2943,7 +2943,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2968,17 +2968,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "block_index": 161, - "block_hash": "5de05d765b9d7bb29bc406a82a7976b8b288627e03e87ad20df1013af737c214", - "block_time": 1729707090, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "116987d935ffb862311955bd01e0cb08f3a019de31716f7e89d2ff8f0edef55a", + "block_time": 1729776858, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", "supported": true, - "utxos_info": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87:1", + "utxos_info": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3010,17 +3010,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_time": 1729707215, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", + "block_time": 1729776972, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", + "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3063,17 +3063,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", "block_index": 189, - "block_hash": "254c249865f8935fff88cc3e4c32fe5d5dc045f4c72848a7e180d315845121eb", - "block_time": 1729707189, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "block_hash": "384b72dd365c3ac0ebab177957df46e8fbdc06cbd3c7004b9039c446bfe9fa52", + "block_time": 1729776956, + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802e97e2e1563653c83bf6d71e62a78132245b4d46", + "data": "0200000000000000010000000000002710804e27f9201757a2b45bc47377f51e88f2fc7bdd07", "supported": true, - "utxos_info": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f:1", + "utxos_info": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3081,7 +3081,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "memo": null, "asset_info": { "divisible": true, @@ -3104,17 +3104,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", - "block_time": 1729707194, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "36570d30f2c8a11ef5eb589231faff30448991762f60b197be923a4f46e4915c", + "block_time": 1729776961, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802f61f4a6229425911b5b60caf31a874f19d8cf4280c9a769a241e84c930a7effea9ae52dcf5bd948c9804e27f9201757a2b45bc47377f51e88f2fc7bdd07400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", + "utxos_info": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3122,14 +3122,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -3137,7 +3137,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3163,23 +3163,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", - "block_time": 1729707220, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", + "block_time": 1729776976, + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04802e97e2e1563653c83bf6d71e62a78132245b4d46017377656570206d7920617373657473", + "data": "04804e27f9201757a2b45bc47377f51e88f2fc7bdd07017377656570206d7920617373657473", "supported": true, - "utxos_info": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6:1", + "utxos_info": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "memo": "sweep my assets" } @@ -3194,7 +3194,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `62` (str, optional) - The index of the most recent transactions to return + + cursor: `64` (str, optional) - The index of the most recent transactions to return + Default: `None` + limit: `2` (int, optional) - The number of transactions to return + Default: `10` @@ -3211,18 +3211,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3234,41 +3234,31 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 61, - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", - "block_index": 195, - "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", - "block_time": 1729707224, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "6e0000000000000001000000000000000164657374726f79", + "tx_index": 63, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_time": 1729776988, + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", "supported": true, - "utxos_info": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9:1", + "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", "confirmed": true, "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, + "message_type": "dispense", + "message_type_id": 13, "message_data": { - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" + "data": "00" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00004000" } ], - "next_cursor": 60, - "result_count": 63 + "next_cursor": 62, + "result_count": 65 } ``` @@ -3277,7 +3267,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001010000000000000000000000000000000000000000000000000000000000000000ffffffff03015300ffffffff0200f2052a01000000160014550b6ff425fadac2efe66d0817448876cd5e40770000000000000000266a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf90120000000000000000000000000000000000000000000000000000000000000000000000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010139a8913e53502a7b640846053d3cfdca850c4731b184a193c1e19e0ac5560fcb0200000000ffffffff03a00f00000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c00000000000000000c6a0aeefdf3da506923f1fd5a30c70827010000001600142f61f4a6229425911b5b60caf31a874f19d8cf4202473044022065046a8e95bbd752a20cf3db6bb6e73a37790b6e2a149470b548c46bccd4f9ee022067a5ee8c077564eefe4f14d0191dc4326ef308c45a13db3360093f2b91a145b001210387b9df27b98064e93726b8588f79ad86a732606b4e887ff96a0396c15a0ad3d100000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,41 +3280,54 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "", - "destination": null, - "btc_amount": null, - "fee": null, - "data": "", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", "decoded_tx": { "version": 2, "segwit": true, - "coinbase": true, + "coinbase": false, "vin": [ { - "hash": "0000000000000000000000000000000000000000000000000000000000000000", - "n": 4294967295, - "script_sig": "015300", + "hash": "39a8913e53502a7b640846053d3cfdca850c4731b184a193c1e19e0ac5560fcb", + "n": 2, + "script_sig": "", "sequence": 4294967295, - "coinbase": true + "coinbase": false } ], "vout": [ { - "value": 5000000000, - "script_pub_key": "0014550b6ff425fadac2efe66d0817448876cd5e4077" + "value": 4000, + "script_pub_key": "001451269fef373ad8fe2dd8fce8dca208f10459c33c" }, { "value": 0, - "script_pub_key": "6a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf9" + "script_pub_key": "6a0aeefdf3da506923f1fd5a" + }, + { + "value": 4949854000, + "script_pub_key": "00142f61f4a6229425911b5b60caf31a874f19d8cf42" } ], "vtxinwit": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "3044022065046a8e95bbd752a20cf3db6bb6e73a37790b6e2a149470b548c46bccd4f9ee022067a5ee8c077564eefe4f14d0191dc4326ef308c45a13db3360093f2b91a145b001", + "0387b9df27b98064e93726b8588f79ad86a732606b4e887ff96a0396c15a0ad3d1" ], "lock_time": 0, - "tx_hash": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c", - "tx_id": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c" - } + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_id": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2" + }, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00004000" } } ``` @@ -3334,7 +3337,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52` (str, required) - Transaction hash + + tx_hash: `3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d` (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. @@ -3345,18 +3348,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "a427020b568e7a81e34d35e0881b1908445542bc1508a13e7332e7bba8d4e4d5", + "hash": "3adfd2398ce4a22b04fefceb71d3eb2ee66a28233ba39cecd0cba0f4af10ae9e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3366,20 +3369,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eb63a752647ee27c323fe7dcad1af7281f8bf1c18901ae8b6ac48ccc1ac4c9160be27dd740af8d04e9fce006605d7" + "script_pub_key": "6a2e1b26b4580ff075639ff5ef44e98b020309d1f03fe4660d7611b5159df82098d2abb6906e7a8875783a5ce8494dea" }, { "value": 4999955000, - "script_pub_key": "00142e97e2e1563653c83bf6d71e62a78132245b4d46" + "script_pub_key": "00144e27f9201757a2b45bc47377f51e88f2fc7bdd07" } ], "vtxinwit": [ - "304402201f2c52d6ead64dff96d04bc1739c70f38f8413aeda25673209a9e5a1f351575402206f9f4fe86d85fa15cbbc2416288fb07c3cf2263ed7070dc8a58978fcdd67beec01", - "0211063470b3527db73bd0c05e137fbb770ff8d79dc286942eacf4ea630e87e6bc" + "304402204c730b1849ca9bd584cbf2859a39b6ed49c235a8fae8369e8465b99d46b4681102200e23e042a59214ac85e413b194974a564fe94a5323652eaecae6d47ab9184c4f01", + "02b919f494dfd97e0831b0b73371c81b6b5b4876f7c1881d6f21a32f22e44ec129" ], "lock_time": 0, - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_id": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52" + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_id": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3387,7 +3390,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -3436,7 +3439,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `62` (int, required) - The index of the transaction + + tx_index: `64` (int, required) - The index of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3447,18 +3450,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3477,7 +3480,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (str, required) - The hash of the transaction + + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (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. @@ -3488,18 +3491,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3518,7 +3521,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `62` (int, required) - The index of the transaction to return + + tx_index: `64` (int, required) - The index of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -3538,32 +3541,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3574,20 +3577,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -3597,24 +3600,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3624,24 +3627,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 558, + "event_index": 572, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 196, - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "block_index": 198, + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "msg_index": 1, "quantity": 1500000000, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "status": "valid", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3651,12 +3654,12 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 557, + "next_cursor": 571, "result_count": 12 } ``` @@ -3666,10 +3669,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (str, required) - The hash of the transaction to return + + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (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 + + cursor: `577` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3686,32 +3689,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3722,20 +3725,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -3745,24 +3748,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3772,24 +3775,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 558, + "event_index": 572, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 196, - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "block_index": 198, + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "msg_index": 1, "quantity": 1500000000, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "status": "valid", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3799,12 +3802,12 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 557, + "next_cursor": 571, "result_count": 12 } ``` @@ -3814,7 +3817,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (str, required) - The hash of the transaction to return + + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (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 @@ -3832,11 +3835,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3844,7 +3847,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3856,11 +3859,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3868,11 +3871,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -3890,7 +3893,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (str, required) - The hash of the transaction to return + + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (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 @@ -3908,29 +3911,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3945,7 +3948,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -3967,9 +3970,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `62` (int, required) - The index of the transaction to return + + tx_index: `64` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `563` (str, optional) - The last event index to return + + cursor: `577` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3986,19 +3989,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -4008,24 +4011,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -4035,36 +4038,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], "next_cursor": null, @@ -4077,9 +4080,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (str, required) - The hash of the transaction to return + + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (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 + + cursor: `577` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4096,19 +4099,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -4118,24 +4121,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -4145,36 +4148,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], "next_cursor": null, @@ -4189,7 +4192,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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 @@ -4213,7 +4216,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4223,7 +4226,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4234,7 +4237,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4244,7 +4247,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4255,7 +4258,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4265,7 +4268,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4276,7 +4279,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4286,7 +4289,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4297,7 +4300,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4307,7 +4310,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4324,8 +4327,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - Comma separated list of addresses to return - + cursor: `62` (str, optional) - The last transaction index to return + + addresses: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - Comma separated list of addresses to return + + cursor: `64` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4341,19 +4344,81 @@ Returns the transactions of a list of addresses ``` { "result": [ + { + "tx_index": 63, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_time": 1729776988, + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 196, + "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_time": 1729776983, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_time": 1729707215, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", + "block_time": 1729776972, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", + "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4389,23 +4454,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", - "block_time": 1729707202, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", + "block_time": 1729776967, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "supported": true, - "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", + "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "status": "valid" } }, @@ -4413,17 +4478,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 191, - "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", - "block_time": 1729707198, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", + "block_time": 1729776964, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", + "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4456,88 +4521,10 @@ Returns the transactions of a list of addresses } }, "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", - "block_index": 190, - "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", - "block_time": 1729707194, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", - "supported": true, - "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 53, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", - "block_index": 187, - "block_hash": "738f28c86aa369eed0bfc906eb5fcfa866238b9dc276bf286ef4ccd562dc7113", - "block_time": 1729707181, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "btc_amount": 2000, - "fee": 10000, - "data": "0bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b37f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "supported": true, - "utxos_info": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c:0", - "confirmed": true, - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "status": "valid" - } - }, - "btc_amount_normalized": "0.00002000" } ], - "next_cursor": 52, - "result_count": 37 + "next_cursor": 56, + "result_count": 39 } ``` @@ -4546,10 +4533,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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 + + cursor: `577` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4566,177 +4553,115 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 529, - "event": "OPEN_ORDER", + "event_index": 561, + "event": "DISPENSE", "params": { - "block_index": 193, - "expiration": 21, - "expire_index": 214, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "status": "open", - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "tx_index": 59, - "block_time": 1729707215, - "give_asset_info": { - "divisible": true, + "asset": "TESTLOCKDESC", + "block_index": 197, + "btc_amount": 4000, + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "dispense_index": 0, + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_index": 63, + "block_time": 1729776988, + "asset_info": { "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 + }, + { + "event_index": 560, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "TESTLOCKDESC", + "dispense_count": 1, + "give_remaining": 6000, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "status": 0, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "asset_info": { "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "block_index": 193, - "block_time": 1729707215 + "give_remaining_normalized": "0.00006000" + }, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 }, { - "event_index": 528, - "event": "DEBIT", + "event_index": 559, + "event": "CREDIT", "params": { - "action": "open order", - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "asset": "XCP", - "block_index": 193, - "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "quantity": 1000, - "tx_index": 59, + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "block_index": 197, + "calling_function": "dispense", + "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "quantity": 4000, + "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729707215, + "block_time": 1729776988, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "0.00004000" }, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "block_index": 193, - "block_time": 1729707215 + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 }, { - "event_index": 527, + "event_index": 557, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_index": 193, - "block_time": 1729707215, - "btc_amount": 0, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "destination": "", - "fee": 10000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "tx_index": 59, - "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_index": 197, + "block_time": 1729776988, + "btc_amount": 4000, + "data": "0d00", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "fee": 0, + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_index": 63, + "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "dispense", + "message_type_id": 13, "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000" + "data": "00" } }, - "btc_amount_normalized": "0.00000000" - }, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "block_index": 193, - "block_time": 1729707215 - }, - { - "event_index": 523, - "event": "CANCEL_ORDER", - "params": { - "block_index": 192, - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "status": "valid", - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", - "tx_index": 58, - "block_time": 1729707202 - }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", - "block_index": 192, - "block_time": 1729707202 - }, - { - "event_index": 522, - "event": "CREDIT", - "params": { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "asset": "XCP", - "block_index": 192, - "calling_function": "cancel order", - "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", - "quantity": 1000, - "tx_index": 58, - "utxo": null, - "utxo_address": null, - "block_time": 1729707202, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" + "btc_amount_normalized": "0.00004000" }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", - "block_index": 192, - "block_time": 1729707202 + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 } ], - "next_cursor": 520, - "result_count": 179 + "next_cursor": 557, + "result_count": 189 } ``` @@ -4745,7 +4670,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r,bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq,bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp` (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 @@ -4761,18 +4686,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "quantity": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, "asset_info": { "divisible": true, "asset_longname": null, @@ -4782,22 +4707,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -4807,22 +4732,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", - "block_index": 196, - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "block_index": 198, + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -4832,30 +4757,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729707238.1041224, + "block_time": 1729777005.7045548, "btc_amount": 0, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "destination": "", "fee": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, - "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, + "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -4869,7 +4794,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, @@ -4882,7 +4807,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -4902,7 +4827,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4910,14 +4835,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4925,14 +4850,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4947,19 +4872,19 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "TESTLOCKDESC", - "quantity": 10000000000, + "quantity": 9999990000, "utxo": null, "utxo_address": null, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, - "quantity_normalized": "100.00000000" + "quantity_normalized": "99.99990000" } ], "next_cursor": null, @@ -4972,7 +4897,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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` @@ -4985,7 +4910,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5010,7 +4935,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5060,16 +4985,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "asset_info": { "divisible": true, "asset_longname": null, @@ -5081,16 +5006,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "event": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "asset_info": { "divisible": true, "asset_longname": null, @@ -5102,20 +5027,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "event": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5123,20 +5048,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", + "event": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707057, + "block_time": 1729776846, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5148,16 +5073,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "event": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "tx_index": 39, - "utxo": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", - "utxo_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "utxo": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", + "utxo_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "confirmed": true, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5174,7 +5099,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5211,18 +5136,39 @@ Returns the debits of an address ``` { "result": [ + { + "block_index": 196, + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "asset": "TESTLOCKDESC", + "quantity": 10000, + "action": "open dispenser", + "event": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_index": 62, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729776983, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00010000" + }, { "block_index": 193, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "asset_info": { "divisible": true, "asset_longname": null, @@ -5234,16 +5180,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707198, + "block_time": 1729776964, "asset_info": { "divisible": true, "asset_longname": null, @@ -5255,16 +5201,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -5276,49 +5222,28 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" - }, - { - "block_index": 185, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "asset": "XCP", - "quantity": 10000, - "action": "open order", - "event": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx_index": 51, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729707172, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" } ], - "next_cursor": 43, - "result_count": 20 + "next_cursor": 44, + "result_count": 21 } ``` @@ -5327,7 +5252,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address of the feed + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5362,7 +5287,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -5381,9 +5306,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", + "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", "block_index": 137, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5391,7 +5316,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706957, + "block_time": 1729776753, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5405,7 +5330,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -5424,14 +5349,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "649c26715a5677a8a818a199c2b672fca8d541b44b4d0cc9163d0f87ddfc2173", + "tx_hash": "d3eb98025f98da1c60732f1b5f9b963134fa8c3558c428b6ec2e288f5d3be7dd", "block_index": 112, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729706850, + "block_time": 1729776660, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5446,7 +5371,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -5465,10 +5390,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5476,7 +5401,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -5489,10 +5414,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5500,11 +5425,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5513,10 +5438,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5524,11 +5449,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5537,10 +5462,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "block_index": 152, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5548,11 +5473,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5561,10 +5486,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", + "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", "block_index": 149, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5572,11 +5497,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707018, + "block_time": 1729776810, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5594,7 +5519,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr` (str, required) - The address to return + + address: `bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt` (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 @@ -5613,10 +5538,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "block_index": 151, - "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", - "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", + "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5624,11 +5549,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707027, + "block_time": 1729776818, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5646,7 +5571,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 +5591,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5677,11 +5602,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5690,10 +5615,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5701,11 +5626,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5714,10 +5639,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "block_index": 152, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5725,11 +5650,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5738,10 +5663,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", + "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", "block_index": 149, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5749,11 +5674,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707018, + "block_time": 1729776810, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5771,7 +5696,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr` (str, required) - The address to return + + address: `bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt` (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` @@ -5791,10 +5716,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "block_index": 151, - "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", - "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", + "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5802,11 +5727,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707027, + "block_time": 1729776818, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5824,7 +5749,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5853,9 +5778,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5864,7 +5789,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5874,7 +5799,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -5887,10 +5812,47 @@ Returns the dispensers of an address "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" } ], "next_cursor": null, - "result_count": 1 + "result_count": 2 } ``` @@ -5899,7 +5861,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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` @@ -5912,9 +5874,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5923,7 +5885,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5933,7 +5895,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -5955,7 +5917,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -5972,22 +5934,71 @@ Returns the dispenses of a source ``` { "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5995,7 +6006,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6010,7 +6021,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6024,19 +6035,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6044,7 +6055,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6059,7 +6070,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -6072,7 +6083,7 @@ Returns the dispenses of a source } ], "next_cursor": null, - "result_count": 2 + "result_count": 3 } ``` @@ -6081,7 +6092,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address to return + + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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 @@ -6098,22 +6109,71 @@ Returns the dispenses of a destination ``` { "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6121,7 +6181,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6136,7 +6196,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6150,19 +6210,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6170,7 +6230,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6185,7 +6245,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -6198,7 +6258,7 @@ Returns the dispenses of a destination } ], "next_cursor": null, - "result_count": 2 + "result_count": 3 } ``` @@ -6207,7 +6267,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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` @@ -6228,19 +6288,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6248,7 +6308,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6263,7 +6323,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6277,19 +6337,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6297,7 +6357,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6312,7 +6372,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -6334,7 +6394,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address to return + + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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` @@ -6355,19 +6415,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6375,7 +6435,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6390,7 +6450,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6404,19 +6464,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6424,7 +6484,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6439,7 +6499,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -6461,7 +6521,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r` (str, required) - The address to return + + address: `bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq` (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 @@ -6480,16 +6540,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -6503,7 +6563,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6535,14 +6595,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -6557,20 +6617,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", + "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -6585,20 +6645,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729707086, + "block_time": 1729776855, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", + "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -6613,20 +6673,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707072, + "block_time": 1729776850, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", + "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -6641,20 +6701,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707057, + "block_time": 1729776846, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -6669,7 +6729,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6684,7 +6744,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The issuer or owner to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -6707,8 +6767,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -6716,16 +6776,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": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -6733,16 +6793,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": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -6750,16 +6810,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": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -6767,16 +6827,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": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -6784,8 +6844,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": 1729706911, - "last_issuance_block_time": 1729706927, + "first_issuance_block_time": 1729776712, + "last_issuance_block_time": 1729776728, "supply_normalized": "0.00000000" } ], @@ -6799,7 +6859,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The issuer to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -6822,8 +6882,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -6831,16 +6891,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": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -6848,16 +6908,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": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -6865,16 +6925,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": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -6882,16 +6942,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": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -6899,8 +6959,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": 1729706911, - "last_issuance_block_time": 1729706927, + "first_issuance_block_time": 1729776712, + "last_issuance_block_time": 1729776728, "supply_normalized": "0.00000000" } ], @@ -6914,7 +6974,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The owner to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -6937,8 +6997,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -6946,16 +7006,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": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -6963,16 +7023,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": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -6980,16 +7040,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": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -6997,16 +7057,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": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -7014,8 +7074,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": 1729706911, - "last_issuance_block_time": 1729706927, + "first_issuance_block_time": 1729776712, + "last_issuance_block_time": 1729776728, "supply_normalized": "0.00000000" } ], @@ -7029,8 +7089,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return - + cursor: `62` (str, optional) - The last transaction index to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + cursor: `64` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7046,19 +7106,58 @@ Returns the transactions of an address ``` { "result": [ + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 196, + "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_time": 1729776983, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_time": 1729707215, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", + "block_time": 1729776972, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", + "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7094,23 +7193,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", - "block_time": 1729707202, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", + "block_time": 1729776967, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "supported": true, - "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", + "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "status": "valid" } }, @@ -7118,17 +7217,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 191, - "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", - "block_time": 1729707198, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", + "block_time": 1729776964, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", + "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7164,17 +7263,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", - "block_time": 1729707194, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "36570d30f2c8a11ef5eb589231faff30448991762f60b197be923a4f46e4915c", + "block_time": 1729776961, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802f61f4a6229425911b5b60caf31a874f19d8cf4280c9a769a241e84c930a7effea9ae52dcf5bd948c9804e27f9201757a2b45bc47377f51e88f2fc7bdd07400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", + "utxos_info": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7182,14 +7281,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7197,7 +7296,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7213,56 +7312,10 @@ Returns the transactions of an address ] }, "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "block_index": 185, - "block_hash": "0d86fd96dc3fee263f9cf2f0ce83888049645b5043510414bb536b1a6edffa54", - "block_time": 1729707172, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", - "supported": true, - "utxos_info": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 10000, - "get_asset": "BTC", - "get_quantity": 10000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 49, - "result_count": 25 + "next_cursor": 51, + "result_count": 26 } ``` @@ -7271,7 +7324,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -7290,20 +7343,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7328,7 +7381,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7357,9 +7410,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7374,7 +7427,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7400,9 +7453,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7417,7 +7470,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7443,9 +7496,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7460,7 +7513,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7486,9 +7539,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7503,7 +7556,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7538,7 +7591,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The source of the fairminter to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7563,10 +7616,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, "block_index": 155, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7591,7 +7644,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7600,10 +7653,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7628,7 +7681,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729706948, + "block_time": 1729776746, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7640,10 +7693,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "tx_index": 18, "block_index": 131, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7668,7 +7721,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729706931, + "block_time": 1729776731, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7680,10 +7733,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "tx_index": 14, "block_index": 130, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7708,7 +7761,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729706927, + "block_time": 1729776728, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7720,10 +7773,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "tx_index": 10, "block_index": 125, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7748,7 +7801,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7770,7 +7823,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address of the mints to return + + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7788,22 +7841,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7812,22 +7865,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", + "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706944, + "block_time": 1729776742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7836,22 +7889,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", + "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", "tx_index": 20, "block_index": 133, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706939, + "block_time": 1729776739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7860,22 +7913,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", + "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", "tx_index": 19, "block_index": 132, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706935, + "block_time": 1729776736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7884,22 +7937,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c7fc7e50dc4c7041d440914ca5a755965790114e82568e20e5fc7b81d398fec", + "tx_hash": "cb1e289bbef3e8dd411c8e7ab46bd4311ebb2f232c0f000389a2772bb13aec69", "tx_index": 15, "block_index": 127, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706915, + "block_time": 1729776716, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7908,22 +7961,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -7942,7 +7995,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address of the mints to return + + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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` @@ -7961,22 +8014,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -8018,8 +8071,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will make the bet - + feed_address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will make the bet + + feed_address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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) @@ -8087,7 +8140,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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) @@ -8143,7 +8196,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8153,9 +8206,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985819, - "btc_fee": 14181, - "rawtransaction": "0200000000010187c512403ed63cc3ba2e281271a23061df2e1689603ff74b80f36b772daff10400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29859ec55eb3bfcaa16f9e3e53cadb0b44604b608820a20637c23c25a4a0419904638e572b1dbca36a9b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985102, + "btc_fee": 14898, + "rawtransaction": "0200000000010107ef201f70435ccfd55c0672e94c2e89749a4ab265571941c1f792e4e861961c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a29abc6f3ee51a1acfa5f2baac9cfd477da39c89dd5847527c5c38a6dec6d1ef84cb43c1ddccb9d569bc6ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8177,8 +8230,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending the payment - + order_match_id: `b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending the payment + + order_match_id: `c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096` (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) @@ -8230,23 +8283,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" }, "name": "btcpay", - "data": "434e5452505254590bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "data": "434e5452505254590bc614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b254172c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978951, - "btc_fee": 18049, - "rawtransaction": "020000000001013ceaeeef9163c765d415596ef1f4caac86503221412ad57900132caaf9d6c65b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03b80b000000000000160014550b6ff425fadac2efe66d0817448876cd5e407700000000000000004b6a4906a00e613b4cee020592a6cbbaa30b1a133ca66613c2039fc191a991df25b33a724bc144f2a8f24c44517781896c042b70d0665b615b1883f6d441450cccc1ffb198b2eb24281eefdfc79f052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999978039, + "btc_fee": 18961, + "rawtransaction": "02000000000101196b9f3fe3445aedae519e648a518ef0402d96c41b372bd6840716d264fef0a20000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03b80b00000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c00000000000000004b6a49f830428a708cd1fd8f241c599f8bf4bb12eae2a2050b11a1fc7f6223969d734b36cfbbf05fc5fe5da66565533b585efaa92b7e81c5bab5c9f3c3da1cfee34d57c8c45c714e1a513d17379c052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "status": "valid" } } @@ -8259,7 +8312,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address with the BTC to burn + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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` @@ -8314,7 +8367,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "quantity": 1000, "overburn": false }, @@ -8322,9 +8375,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985815, - "btc_fee": 13185, - "rawtransaction": "0200000000010179e4143a09a107f47b85d1ae6fd2850282f939cf47d57334910f04b944b189aa00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000" + "btc_change": 4999985149, + "btc_fee": 13851, + "rawtransaction": "0200000000010148cd77c086ac758b3dec28f0cc0429d62a6f83cbfcc1b97f3c60d0bd7fb3c0cb0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acfdb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000" } } ``` @@ -8334,8 +8387,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343` (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) @@ -8387,21 +8440,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb" + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343" }, "name": "cancel", - "data": "434e545250525459469a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "data": "434e5452505254594630cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985819, - "btc_fee": 14181, - "rawtransaction": "02000000000101235696618de711c3817a7cca2701aaddb1c5fb266d95500b91cb26765d29fee900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29f79854e51381bd27aacac11b20eea25e70872ecf49b677fee13cb705ca68abcefd660a9f4f48ef402b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985102, + "btc_fee": 14898, + "rawtransaction": "020000000001018be64a85dcf8f1e03cc49ce87cd59912751d72c02fd7cabde0737765f25443280000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a2990471152c6dae4f78c15c0cc28fc62d158bcf6eb2712ad03a8196ea680abcad8ea1fab6fadb412cd23ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "status": "valid" } } @@ -8414,7 +8467,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -8469,7 +8522,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8486,9 +8539,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986346, - "btc_fee": 13654, - "rawtransaction": "020000000001012bee2e38dfb041799c2308e4614c1e732e65cd92a8f6630588af2b2c0665f17f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000226a20930ff6501a29ef43923f0f26f4db09d88746b6143f4279df54684904ef9bc136aabc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985656, + "btc_fee": 14344, + "rawtransaction": "020000000001012914188be4dcc990bce10565885ed74e9aa3d224fc723970afa56faa09045cc80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000226a2090f0b966e5633148ff12146fb7aa097e4e6cb8580b60e26427157d4a202e0b0af8b9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8508,7 +8561,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: `bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3` (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) @@ -8569,7 +8622,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8591,9 +8644,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949970000, "btc_out": 0, - "btc_change": 4949955760, - "btc_fee": 14240, - "rawtransaction": "02000000000101cc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc302000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b2526ffffffff0200000000000000002c6a2a1c00957e5fe032db14274a2c28e7a740ee8fdd5dc4dbf36a84fc4191bf757a2c33530c552ea9a11d6148b0540a2701000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b252602000000000000", + "btc_change": 4949955041, + "btc_fee": 14959, + "rawtransaction": "0200000000010130926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c502000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2cffffffff0200000000000000002c6a2a203a4b40308e3242e039cc4bf6a43a4dcc9dac389852cd90ced81eee3c31e13463c41f6e7b6eb211a19ae1510a2701000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2c02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8619,7 +8672,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -8674,14 +8727,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -8698,9 +8751,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986287, - "btc_fee": 13713, - "rawtransaction": "0200000000010141ac03f1b77ba5eeb09f53c0a97248429efd89a06ad9ae66e92acead08f7d4a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a215bc1a118ae8c811789ad518e8ceeed229d9f8ceda3b106fd917da9b4da6a429de46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985595, + "btc_fee": 14405, + "rawtransaction": "020000000001014bee57899ff6f759ebbf6a408801fad2b959912e9311539fa225a729d0cead230000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a2126bb39b583d91f5f66edd1580705f0dbcc4fcd00d3d03b703de3f7f7dbd5a5cef6bbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8721,10 +8774,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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` @@ -8785,10 +8838,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "transfer_destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "lock": false, "reset": false, @@ -8799,9 +8852,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983749, - "btc_fee": 15705, - "rawtransaction": "0200000000010126982455051478f76a5dd4d40736b953b7a6d9f65782618e2febafd5cc3eb83900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff032202000000000000160014550b6ff425fadac2efe66d0817448876cd5e40770000000000000000236a21d482901ac646d880017c681e71228e63b89f7ab94de9b88b6ea9aa3ef45e2bd58b85b2052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999982956, + "btc_fee": 16498, + "rawtransaction": "02000000000101859ea9abed55ed65724d765e5189070cf600fc37e2bc290a941eaebca0def2a80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03220200000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c0000000000000000236a217a796f64f1291997a2369733a3853d3d2b2bee8bb06629a6a5e0fbe51df7c2342e6caf052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8830,9 +8883,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt,bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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` @@ -8889,16 +8942,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", 1 ], [ "MYASSETA", - "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", 2 ] ], @@ -8906,26 +8959,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280550b6ff425fadac2efe66d0817448876cd5e4077808d415efb3d25682f32cc04efaa6b1b02439531358f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e5452505254590300028051269fef373ad8fe2dd8fce8dca208f10459c33c802f61f4a6229425911b5b60caf31a874f19d8cf428f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945492, - "btc_fee": 52508, - "rawtransaction": "0200000000010446990a86e10fd1cba8f8434757592bc75bed5d5a4475c0f8d261794d215755f000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff16fad3c739326215e75b69eb121c5513c282cbd184f3ab0b704101650753fc3c00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff443e82a2ab092757b67942c87c0ebfdac4a9bf302aa51b8bc1883748536b4e4d00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff65e5a8be62d6b8eb38ae6bcb8054be7d8efc86498417cec1c21917b5da9b693f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03e8030000000000006951210240cde7e337f6ecb8c9c504468aea18a702a6f6166f0390ef0adf0de6a912155921031fffc323267caf31de068258183e5badf7471d257d7d6dfb1d3ddd017429e2592102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee803000000000000695121024fcde7e337f6ecb8c9e6732b78d377e9d4030ccca1f9ed09b5e8496edfdf4bb121035f880bae6722540cfb6ea56ad43ab4079c5c1d66e84c58743f75b86d1846ce582102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53ae14f316a804000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000000000000", + "btc_change": 19999942840, + "btc_fee": 55160, + "rawtransaction": "0200000000010498bb09d7acee93bd9460f979697a5817a2dc87b58d5ab2a25fbec8a869ce70d60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff200f97ce0f1dfa89e0a5ecf77f68ec1862cafdd753510ac7798b8081b69c9e650000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff48849d4e48c11080f86ec931ff9bd4dfd0ea5091aa752ef946f0d8ac331bc5640000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffe2ee030c19c5b64633b5a0909c50a5a1897adb1914e17aff4842e4c3198eed8c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03e80300000000000069512103b7febaabfa9e6f48cdcfadc0fc4b2dd90df15a4e69132d18302b8c5e32c884d12102508932dd48b41d4cb5758a551ade1b8a4de7c3797f09e52bc57ba9fd1b3890e221036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee80300000000000069512102b8febaabfa9e6f48cdecdaad0e766f67c04660969b2b6e6f6fd72e56c3ccdd1e210293b5faf22940bb6e2150134e41bed17957608e60a7c6a7a4e733cc917757bcf721036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aeb8e816a80400000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8941,7 +8994,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -8999,7 +9052,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9016,7 +9069,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9028,9 +9081,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985233, - "btc_fee": 14767, - "rawtransaction": "02000000000101483513635aa06d06f24a39fa24ec9c38c800ad6b83cfc7c088363935682a5db800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000356a33e8edf1f978a10e70b60a2a1f65e7e9e096d71f7eebcf26a2c46580fa448755c1e6f15ec4c147f4d770d8ee5564d40ef9486a7351b8052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999984487, + "btc_fee": 15513, + "rawtransaction": "02000000000101d6d6c20ac623cf5f78c4d26d1416c9a30747c6cf8491dd3fbfc29c3e38d879ae0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000356a338ce6193b4ca4c9f04de91f1cbbd96936ed2065e0c8c751d8a78840942e2fdc186c8375b00aac03f08eaff3c641e5643009173a67b5052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9056,8 +9109,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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 @@ -9117,8 +9170,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9134,19 +9187,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808d415efb3d25682f32cc04efaa6b1b0243953135", + "data": "434e54525052545902000000000000000100000000000003e8802f61f4a6229425911b5b60caf31a874f19d8cf42", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985526, - "btc_fee": 14474, - "rawtransaction": "02000000000101a211b1af02e70933b2646e3b6abf7f98da9b9227e581475d8ec507aaac1248f400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000306a2eb19d9b3eb2c8170334952bb6cb6154cadb6db7758dcfdba4939a0c5df03058801ed4468674c28fa46fcea514fd6276b9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999984794, + "btc_fee": 15206, + "rawtransaction": "02000000000101f7a7defcbc2424b8fcbbad72954ac1bfa9b05c6284de0ef8fdfcaef4b62917a30000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000306a2e9c5c778ec81d6e17ce3b0d8f983ef03a95798ef045e5e049a168fe1b2e1736f53a90ede4e9a4edee9e5bd51d6cd39ab6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "memo": null, "quantity_normalized": "0.00001000" } @@ -9160,8 +9213,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be sending - + destination: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending + + destination: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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 @@ -9215,23 +9268,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808d415efb3d25682f32cc04efaa6b1b024395313507ffff", + "data": "434e54525052545904802f61f4a6229425911b5b60caf31a874f19d8cf4207ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986287, - "btc_fee": 13713, - "rawtransaction": "0200000000010167b6ebe34ace4a228983468b682eb9e2c7f4445dd71edef4d97c3abf35c1f86f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a21490b19f1c282f0724c4ce3496b99ac13c3e0e44673797f363699361817689ec3c46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985595, + "btc_fee": 14405, + "rawtransaction": "02000000000101a149c4cd87d1d151c2a93952a35891c5898258795de2350eaa1804497abff6730000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a21b1bdc6cc2f16adb27ce78141657b084106d0ee79ca9d56b1959a6e50b8a0844d2abbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "flags": 7, "memo": "ffff" } @@ -9245,8 +9298,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: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp` (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` @@ -9299,17 +9352,17 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", - "btc_in": 4949868000, + "btc_in": 4949854000, "btc_out": 1000, - "btc_change": 4949852643, - "btc_fee": 14357, - "rawtransaction": "020000000001018ce1178e2d7b780aa87ae8eadfd7894887dc66096aff23fcdb15038e3238fe0a020000001600148d415efb3d25682f32cc04efaa6b1b0243953135ffffffff03e8030000000000001600142e97e2e1563653c83bf6d71e62a78132245b4d4600000000000000000c6a0a9957eadb4d8f6b31a775e3c10827010000001600148d415efb3d25682f32cc04efaa6b1b024395313502000000000000", + "btc_change": 4949837918, + "btc_fee": 15082, + "rawtransaction": "02000000000101e2bda465882c0adf7f46864df9deceaba3b74c0c47b931647d46799360d5d29d020000001600142f61f4a6229425911b5b60caf31a874f19d8cf42ffffffff03e8030000000000001600144e27f9201757a2b45bc47377f51e88f2fc7bdd0700000000000000000c6a0a61d5685fa6108486fa7c5e880827010000001600142f61f4a6229425911b5b60caf31a874f19d8cf4202000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9326,7 +9379,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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: `` @@ -9411,7 +9464,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9440,9 +9493,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985467, - "btc_fee": 14533, - "rawtransaction": "02000000000101defc0059407d9de2daa2ca41db9fe3c30c7af10b52a08d63c864f67ddd48dacd00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000316a2fc8629d53c3ce824d1aa1c88d7a1efebc7672ca686c9c700d567ce3ed840b8dd6d7a162e2a58a322f4416dcc6e28afb3bb9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999984733, + "btc_fee": 15267, + "rawtransaction": "02000000000101e92454ae77e444ac9a980d20447664139decf6e5f4f1c78ea506bc525c2b34980000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000316a2f01c9b40be49ad414f0d78fbfc00f8dcd3314bbdd1cacc0774eceb8c9692f5f9b9bd6de91ee55108869848a9e64ac025db6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9481,7 +9534,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address that will be minting the asset + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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` @@ -9536,13 +9589,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9552,9 +9605,9 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987049, - "btc_fee": 12951, - "rawtransaction": "02000000000101800e5e3b142f757b37d56ff953812fd69f909668d81193198ba47c6d782f7c9000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000166a144b1a8b69820af8f3bf9002285cfe5642a1d7562c69bf052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999986395, + "btc_fee": 13605, + "rawtransaction": "02000000000101d04e1298b5b5c49dfc4d4caf1897e44c6622b3c50111213ffb7e347c792d65a10000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000166a1488f4dd8559678f00388733966b5b22a32fc2ad86dbbc052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9573,10 +9626,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: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address from which the assets are attached + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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: `78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c:0` (str, optional) - The utxo to attach the assets to + + destination: `9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9629,8 +9682,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c:0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9643,12 +9696,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c373861636230383266336133333136626161326135363531663535386366393466326633623337306266356332393930396535363034333766306438383937633a307c5843507c31303030", + "data": "434e5452505254596462637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c396464326435363039333739343637643634333162393437306334636237613361626365646566393464383634363766646630613263383836356134626465323a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918531, - "btc_fee": 78469, - "rawtransaction": "02000000000106908123fbb702fc2c02fe7e30826107f5d64cb87d00f135883b4dc02d20b7a31000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff50747a820f31ab003a977ce47ad7bfc17bdc4e3e6c6c7503814342cbed5b08a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff27f96f1203bcb1a72454289bb1a0325adea93e7d504f2edf1eb829c591379c2800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff390aad27075ad44eb52ee316fa02e880605fdf8c86d495b179162a6044ed3a1100000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04dca7d1186d9cc2e6ce754a6a354275e6ca2af650f2ce42c4bc072a3db5b17700000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff25d7ebddb86c7fd7c4f3eba18c98eab8aec616150959094899ad2041aa42c91b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04e80300000000000069512102f7fef05d8f73f05c30e63d6d3c86e001fa4b78e96097a0f83a4bd5f785a5130c2103c648efd2d3578fd732fa43d67b2bc76e829c68a085ce544b623f75c1688926a42102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512102f7fef05d8f73f05c30b0393d2fc1e241fe1c20e33e97e5f7630ed7b489f01cf12102d815eecd91468fcc66ba1ecc296bd72ed3dd39ef92831607613423c43add26772102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512103ddfef05d8f73f05c30ba66392dc8e10c903d11fe3dc6e0f1563fb181bcc87fa22103be2cdaaba320bcae558d2eae4f5eb41ceae409d6f7b62037550714a20ab91e452102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aec36d22fc06000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000002000002000000000000", + "btc_change": 29999914568, + "btc_fee": 82432, + "rawtransaction": "020000000001061e6c164906bb1485bb2cde32a51249e9daee2c98cdfabe196b4f42abcc233e540000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff6b16bd31bf58a6d2813afc535c2a9baab74c05a464afe68a19cc665d6367b8320000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff81868f3768ceba92e6c2dcf97441a1d86a7216d29bd0f1fc5376d9e7c67d8b7e0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffeaa9b753846d6030087bf4832e25c414ccff802dc8ee0625e0d50fd5763701a60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff4a5c203ab326b276327a588ae223c2d1a6a9845c10d214654d3d97fac54793930000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff8c8dfa09ef943b0a7388d3e71344b52d7cd89cbefc3ebf4cef7329418c9e904a0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff04e8030000000000006951210371b03d6a1625098144b14e2028248d520be6e258487524fa75fa8eea88fe95982103e4080ffe7994d8b2525fc2738aa64ac6596add54d528b0df449d2e5a3b80a6a621036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee8030000000000006951210371b03d6a1625098144e515706d6988150efbba0a172923ab79b9c8b9c9e9807a2103b00552aa7f92daa5500e823dd7f00f971a33d655d474b0911ec1725e6ad4a4cc21036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee803000000000000695121035bb03d6a1625098144b74826686a8c5f61dcdc42152871a24d8ef8dafd8ae2072103876461cb1df1bfc13568bb09b3c839a32c04b031b244d1a37df94a685fb590a021036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53ae485e22fc0600000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9665,8 +9718,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: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to detach the assets to + + utxo: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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 @@ -9720,8 +9773,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9734,12 +9787,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964366432373436303830623463313336643463373333376564383065643739666135356463303161633630323733653434643365366634353430646335313535313a307c6263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c5843507c31303030", + "data": "434e54525052545964633465303231633935623533343064636338333663363761633331393363363832626264333833366166326161663039613732626538386338373930353937303a307c62637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030353, - "btc_fee": 46647, - "rawtransaction": "02000000000103481af936583b31262298b94d80e20c832223a8ff9ad044a4340817c5fbe3fbd7010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffffcc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc3000000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff91b6474b9dcf49c4951fd4b33b5debe95223806c26c86d346f528e02e72ae44e010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff04e8030000000000006951210379d3a33010997c332d081af3a69d7f38603c1ddeb9cbdf791eb8360cbc7c1bdb210328b5ae1b7c78dded46847f04afffe3a51a10816a6ccb9a14cae6ccface958dd1210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210379d3a33010997c332d0a18a2a09a2f6d65351889bc92de364abf701bba3e1afc21022ae9a14f2d6d80b60b866808f7f7f8f11e08922b6f80ca50c2aacceb8e82d371210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210353d3a33010997c332d144de1e6d23f7208477dc0bc98de7a28dc026f8b4f284321031fd0ca234c1db9da7fe21e319a9b80952b71e25c5cf9ad27afd2f89efdf0bbe6210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453ae11780b27010000001600144ea467f94eaca52acac0ee04c5fd37938a96af4802000002000002000000000000", + "btc_change": 4950027996, + "btc_fee": 49004, + "rawtransaction": "02000000000103f1604d0af281e6f17db2b6a2630436089bf38359f64c4da626e33d53785c96a701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff30926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c500000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff0b25b8939d7a1b47a973d68655533b29ed214696bc3426e366ec983bc0440dc801000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff04e803000000000000695121022ed54a7ffabca05e51fdb26294d94154ecf2fcc7d9c6c45785bc66229f31171d2103c2c91a59928368eb1c73ca259ed4248fb11c3e2808f6789385e74d5d599ec1c22102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee803000000000000695121032ed54a7ffabca05e51fce96e92d1445cbffef092dccfc01b83bc776e9d76461721028d901d56ccd739e00b33c26288c123d0e71a6c2c09b77ec59aad4d521dc9d6c32102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee8030000000000006951210304d54a7ffabca05e51f7bc3396851219d78899d9ddc5c057e1df051aac07741c2102f4fe7b3aa1b251d87f45f217fcb640bc892f08496ec419f2e3d7743c6eaca3332102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aedc6e0b2701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9804,8 +9857,8 @@ Returns the valid assets "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -9813,16 +9866,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "owner": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "owner": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "divisible": true, "locked": false, "supply": 100000000000, @@ -9830,16 +9883,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729707053, - "last_issuance_block_time": 1729707053, + "first_issuance_block_time": 1729776842, + "last_issuance_block_time": 1729776842, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -9847,16 +9900,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -9864,16 +9917,16 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -9881,8 +9934,8 @@ Returns the valid assets "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" } ], @@ -9910,8 +9963,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -9919,8 +9972,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729706893, - "last_issuance_block_time": 1729706906, + "first_issuance_block_time": 1729776696, + "last_issuance_block_time": 1729776708, "supply_normalized": "100.00000000" } } @@ -9951,7 +10004,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9959,14 +10012,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -9974,7 +10027,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9992,7 +10045,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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. @@ -10004,7 +10057,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -10058,9 +10111,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10075,7 +10128,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10101,9 +10154,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10118,7 +10171,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10144,9 +10197,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10161,7 +10214,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10187,9 +10240,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10204,7 +10257,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10230,9 +10283,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10247,7 +10300,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10309,13 +10362,13 @@ Returns the orders of an asset { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10329,7 +10382,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10349,13 +10402,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10369,7 +10422,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10389,13 +10442,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "tx0_index": 49, - "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 50, - "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10409,7 +10462,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10489,20 +10542,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10510,20 +10563,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", + "event": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10531,20 +10584,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10552,20 +10605,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "event": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10577,16 +10630,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10641,17 +10694,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 196, + "block_index": 198, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -10663,16 +10716,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "event": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707224, + "block_time": 1729776979, "asset_info": { "divisible": true, "asset_longname": null, @@ -10684,16 +10737,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { "divisible": true, "asset_longname": null, @@ -10705,16 +10758,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { "divisible": true, "asset_longname": null, @@ -10726,16 +10779,16 @@ Returns the debits of an asset }, { "block_index": 193, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "asset_info": { "divisible": true, "asset_longname": null, @@ -10775,20 +10828,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10845,14 +10898,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", + "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -10867,20 +10920,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -10895,20 +10948,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -10923,20 +10976,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -10951,7 +11004,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729706893, + "block_time": 1729776696, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10984,11 +11037,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -10996,7 +11049,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -11009,10 +11062,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11020,7 +11073,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -11033,10 +11086,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", "block_index": 189, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -11044,7 +11097,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707189, + "block_time": 1729776956, "asset_info": { "divisible": true, "asset_longname": null, @@ -11057,10 +11110,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", + "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", "block_index": 157, - "source": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", - "destination": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", + "destination": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11068,7 +11121,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707053, + "block_time": 1729776842, "asset_info": { "divisible": true, "asset_longname": null, @@ -11081,10 +11134,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691", + "tx_hash": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b", "block_index": 156, - "source": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", - "destination": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", + "source": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", + "destination": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11092,7 +11145,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707048, + "block_time": 1729776837, "asset_info": { "divisible": true, "asset_longname": null, @@ -11143,9 +11196,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11154,7 +11207,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11164,7 +11217,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -11180,9 +11233,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", + "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", "block_index": 142, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11191,7 +11244,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11201,7 +11254,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706978, + "block_time": 1729776772, "asset_info": { "divisible": true, "asset_longname": null, @@ -11217,9 +11270,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", + "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", "block_index": 150, - "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", + "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11227,10 +11280,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11238,7 +11291,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729707022, + "block_time": 1729776814, "asset_info": { "divisible": true, "asset_longname": null, @@ -11254,18 +11307,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11275,7 +11328,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -11300,7 +11353,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - The address to return + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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` @@ -11313,9 +11366,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11324,7 +11377,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11334,7 +11387,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -11384,7 +11437,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11392,7 +11445,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11401,7 +11454,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11409,7 +11462,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11418,7 +11471,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11426,7 +11479,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11435,7 +11488,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11470,29 +11523,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11507,7 +11560,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -11521,27 +11574,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", + "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", "block_index": 147, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11556,7 +11609,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707010, + "block_time": 1729776802, "asset_info": { "divisible": true, "asset_longname": null, @@ -11570,19 +11623,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11590,7 +11643,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11605,7 +11658,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -11619,19 +11672,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11639,7 +11692,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11654,7 +11707,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -11697,8 +11750,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -11706,8 +11759,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729707072, - "last_issuance_block_time": 1729707072, + "first_issuance_block_time": 1729776850, + "last_issuance_block_time": 1729776850, "supply_normalized": "0.00000000" } ], @@ -11746,10 +11799,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "tx_index": 10, "block_index": 125, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11774,7 +11827,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11814,22 +11867,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", + "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", "tx_index": 13, "block_index": 125, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11838,22 +11891,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "tx_index": 12, "block_index": 124, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11862,22 +11915,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11896,7 +11949,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0` (str, required) - The address of the mints to return + + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (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` @@ -11915,22 +11968,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -11979,9 +12032,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -11996,7 +12049,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12022,9 +12075,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12039,7 +12092,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12065,9 +12118,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12082,7 +12135,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12108,9 +12161,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "block_index": 188, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12125,7 +12178,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12151,9 +12204,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12168,7 +12221,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12203,7 +12256,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb` (str, required) - The hash of the transaction that created the order + + order_hash: `30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343` (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. @@ -12215,9 +12268,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12232,7 +12285,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12264,7 +12317,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3` (str, required) - The hash of the transaction that created the order + + order_hash: `c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541` (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 @@ -12291,13 +12344,13 @@ Returns the order matches of an order { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12311,7 +12364,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12331,13 +12384,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12351,7 +12404,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12381,7 +12434,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3` (str, required) - The hash of the transaction that created the order + + order_hash: `c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541` (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 @@ -12400,15 +12453,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "btc_amount": 2000, - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "status": "valid", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "btc_amount_normalized": "0.00002000" } ], @@ -12452,9 +12505,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12472,7 +12525,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729707181, + "block_time": 1729776949, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12498,9 +12551,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "block_index": 188, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12518,7 +12571,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12544,9 +12597,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12564,7 +12617,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12590,9 +12643,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12610,7 +12663,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12636,9 +12689,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12656,7 +12709,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12719,13 +12772,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12742,7 +12795,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12762,13 +12815,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12785,7 +12838,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12805,13 +12858,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "tx0_index": 49, - "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 50, - "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12828,7 +12881,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707105, + "block_time": 1729776882, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12886,13 +12939,13 @@ Returns all the order matches { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12906,7 +12959,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12926,13 +12979,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12946,7 +12999,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12966,13 +13019,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "tx0_index": 49, - "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 50, - "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12986,7 +13039,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13154,66 +13207,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", + "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", "block_index": 121, - "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", + "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729706888, + "block_time": 1729776691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "b5e1b542bdf4db3c7e478d833402954d2a9c29bdc166ad86f440d15aad0c7970", + "tx_hash": "5d2861df57ce5565c34227aa101b58099923458e765f9d07292021f503dcc7d8", "block_index": 120, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729706884, + "block_time": 1729776688, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "88c20ff6685e02b487e0d0b71875538ebef59c1c008b9a6b7fa5a2998f34df02", + "tx_hash": "5e1061c86662cb867de847c20c5c8e890fcae77f9d367d5073f7cc4ad63892cb", "block_index": 119, - "source": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu", + "source": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729706879, + "block_time": 1729776685, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "06c9b9066c478bc6ab3fa33a2f5977ed60c3315a75d4037ae3014a9ef4a22fe4", + "tx_hash": "32d9e83755a322ae35d20300f07ef6e652f44a13cd8311d6e23ea204f649cf74", "block_index": 118, - "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729706875, + "block_time": 1729776681, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ee6b7b48ba8530c152f193e489e4f254a54a3e6d07d694bfee743b9c7d5b08a1", + "tx_hash": "a0293be2280885f5849d80ab9a4704169384df66188f638cd2a5153687d9d738", "block_index": 117, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729706871, + "block_time": 1729776677, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13258,9 +13311,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13269,7 +13322,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13279,7 +13332,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -13295,9 +13348,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", + "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", "block_index": 142, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13306,7 +13359,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13316,7 +13369,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706978, + "block_time": 1729776772, "asset_info": { "divisible": true, "asset_longname": null, @@ -13332,9 +13385,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", + "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", "block_index": 150, - "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", + "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13342,10 +13395,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13353,7 +13406,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729707022, + "block_time": 1729776814, "asset_info": { "divisible": true, "asset_longname": null, @@ -13367,20 +13420,57 @@ Returns all dispensers "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, { "tx_index": 33, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13390,7 +13480,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -13406,7 +13496,7 @@ Returns all dispensers } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 } ``` @@ -13415,7 +13505,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f` (str, required) - The hash of the dispenser to return + + dispenser_hash: `dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5` (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. @@ -13427,9 +13517,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13438,7 +13528,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13448,7 +13538,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -13470,7 +13560,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f` (str, required) - The hash of the dispenser to return + + dispenser_hash: `dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5` (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 @@ -13490,19 +13580,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13510,7 +13600,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13525,7 +13615,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -13539,19 +13629,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13559,7 +13649,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13574,7 +13664,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -13616,20 +13706,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -13654,7 +13744,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e` (str, required) - The hash of the dividend to return + + dividend_hash: `5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e` (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. @@ -13666,20 +13756,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -13701,7 +13791,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e` (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 @@ -13724,12 +13814,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "tx_index": 41, - "utxo": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "utxo": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "divisible": true, "asset_longname": null, @@ -13741,16 +13831,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "address": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "divisible": true, "asset_longname": null, @@ -13775,7 +13865,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `563` (str, optional) - The last event index to return + + cursor: `577` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -13792,47 +13882,47 @@ Returns all events { "result": [ { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -13843,20 +13933,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -13866,24 +13956,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -13893,13 +13983,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 558, - "result_count": 564 + "next_cursor": 572, + "result_count": 578 } ``` @@ -13908,7 +13998,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `563` (int, required) - The index of the event to return + + event_index: `577` (int, required) - The index of the event to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13919,19 +14009,19 @@ Returns the event of an index ``` { "result": { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 } } ``` @@ -13963,7 +14053,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 50 + "event_count": 52 }, { "event": "SWEEP", @@ -13989,7 +14079,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `563` (str, optional) - The last event index to return + + cursor: `577` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14006,19 +14096,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -14028,24 +14118,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -14055,94 +14145,94 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 540, + "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "asset": "XCP", - "block_index": 194, - "calling_function": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", - "quantity": 74499387833, - "tx_index": 60, + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "block_index": 197, + "calling_function": "dispense", + "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "quantity": 4000, + "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729707220, + "block_time": 1729776988, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, - "quantity_normalized": "744.99388000" + "quantity_normalized": "0.00004000" }, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", - "block_index": 194, - "block_time": 1729707220 + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 }, { - "event_index": 538, + "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "asset": "MYASSETA", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", - "quantity": 10, + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "744.99388000" }, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "block_time": 1729707220 + "block_time": 1729776976 } ], - "next_cursor": 536, - "result_count": 71 + "next_cursor": 538, + "result_count": 72 } ``` @@ -14163,7 +14253,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 71 + "event_count": 72 } } ``` @@ -14192,29 +14282,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14229,7 +14319,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -14240,30 +14330,79 @@ Returns all the dispenses "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, { "tx_index": 34, "dispense_index": 0, - "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", + "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", "block_index": 147, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14278,7 +14417,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707010, + "block_time": 1729776802, "asset_info": { "divisible": true, "asset_longname": null, @@ -14292,19 +14431,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14312,7 +14451,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14327,7 +14466,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -14341,19 +14480,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14361,7 +14500,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14376,7 +14515,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -14389,7 +14528,7 @@ Returns all the dispenses } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 } ``` @@ -14417,11 +14556,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14429,7 +14568,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -14441,11 +14580,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14453,11 +14592,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -14466,10 +14605,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14477,7 +14616,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -14490,10 +14629,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14501,11 +14640,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -14514,10 +14653,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -14525,11 +14664,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -14580,14 +14719,14 @@ Returns all the issuances "result": [ { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -14602,20 +14741,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", + "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -14630,20 +14769,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729707086, + "block_time": 1729776855, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", + "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -14658,20 +14797,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707072, + "block_time": 1729776850, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", + "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -14686,20 +14825,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707057, + "block_time": 1729776846, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", + "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "transfer": false, "callable": false, "call_date": 0, @@ -14714,7 +14853,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707053, + "block_time": 1729776842, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14729,7 +14868,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87` (str, required) - The hash of the transaction to return + + tx_hash: `71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99` (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. @@ -14741,14 +14880,14 @@ Returns the issuances of a block { "result": { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -14763,7 +14902,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -14795,16 +14934,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -14818,7 +14957,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6` (str, required) - The hash of the transaction to return + + tx_hash: `233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66` (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. @@ -14831,16 +14970,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -14874,9 +15013,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "block_index": 138, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14884,14 +15023,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706961, + "block_time": 1729776757, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", + "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", "block_index": 137, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -14899,7 +15038,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706957, + "block_time": 1729776753, "fee_fraction_int_normalized": "0.00000000" } ], @@ -14913,7 +15052,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b` (str, required) - The hash of the transaction to return + + tx_hash: `46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865` (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. @@ -14925,9 +15064,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "block_index": 138, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -14935,7 +15074,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706961, + "block_time": 1729776757, "fee_fraction_int_normalized": "0.00000000" } } @@ -14972,10 +15111,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, "block_index": 155, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15000,7 +15139,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15009,10 +15148,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15037,7 +15176,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729706948, + "block_time": 1729776746, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15049,10 +15188,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "tx_index": 18, "block_index": 131, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15077,7 +15216,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729706931, + "block_time": 1729776731, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15089,10 +15228,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "tx_index": 14, "block_index": 130, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15117,7 +15256,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729706927, + "block_time": 1729776728, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15129,10 +15268,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "tx_index": 10, "block_index": 125, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15157,7 +15296,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15226,22 +15365,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -15250,22 +15389,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", + "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706944, + "block_time": 1729776742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -15274,22 +15413,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", + "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", "tx_index": 20, "block_index": 133, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706939, + "block_time": 1729776739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -15298,22 +15437,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", + "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", "tx_index": 19, "block_index": 132, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706935, + "block_time": 1729776736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -15322,22 +15461,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "00ae9a87cf055baf3a423ca8542da114393af49566d7ba8813ea5a137e2212d6", + "tx_hash": "aa41ad4acc191c8b16344683e0338b538e38ea648745ef845646ebcf400d4bca", "tx_index": 17, "block_index": 129, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706923, + "block_time": 1729776725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -15356,7 +15495,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56` (str, required) - The hash of the fairmint to return + + tx_hash: `579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064` (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. @@ -15367,22 +15506,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -15400,7 +15539,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe,bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu` (str, required) - The addresses to search for + + addresses: `bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3,bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp` (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. @@ -15417,19 +15556,19 @@ Returns a list of unspent outputs for a list of addresses "vout": 2, "height": 147, "value": 4949970000, - "confirmations": 50, + "confirmations": 52, "amount": 49.4997, - "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", - "address": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe" + "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", + "address": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3" }, { "vout": 2, "height": 157, "value": 100000, - "confirmations": 40, + "confirmations": 42, "amount": 0.001, - "txid": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", - "address": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu" + "txid": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", + "address": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp" } ], "next_cursor": null, @@ -15442,7 +15581,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r` (str, required) - The address to search for + + address: `bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq` (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 @@ -15458,28 +15597,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" + "tx_hash": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c" }, { - "tx_hash": "2e3539a7e624d565e115227f3e1ce0d2ceda8eadc192cd00942b0f68b13f940f" + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66" }, { - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f" + "tx_hash": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75" }, { - "tx_hash": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4" + "tx_hash": "ca05521ced0559ec4b81787af032ffb25086c7e630d4d3e547794846893fce7c" }, { - "tx_hash": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece" + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e" }, { - "tx_hash": "dbf445eb4b00e0f435ff1684067857c017d517553d31908e9842e5cd5f0037cf" + "tx_hash": "61bef57f9e80c8ad6b0038ec0e933dab81a6de83c79fad2e1c1cf5473edafd94" }, { - "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc" + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" }, { - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6" + "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec" } ], "next_cursor": null, @@ -15492,7 +15631,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw` (str, required) - The address to search for. + + address: `bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq` (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. @@ -15505,8 +15644,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 1, - "tx_hash": "e3d1bd6cdb590367b2c0d2f4afdc5dd5c683580218cb6894eef968342f75ab11" + "block_index": 10, + "tx_hash": "bfcc2c7b7a0e8828957a930dd6850e9f4afe7573b26fdb171ee48bd22549b892" } } ``` @@ -15516,7 +15655,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe` (str, required) - The address to search for + + address: `bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3` (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 @@ -15535,9 +15674,9 @@ Returns a list of unspent outputs for a specific address "vout": 2, "height": 147, "value": 4949970000, - "confirmations": 50, + "confirmations": 52, "amount": 49.4997, - "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc" + "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230" } ], "next_cursor": null, @@ -15550,7 +15689,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt` (str, required) - Address to get pubkey for. + + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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. @@ -15562,7 +15701,7 @@ Get pubkey for an address. ``` { - "result": "02090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e" + "result": "036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d" } ``` @@ -15571,7 +15710,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551` (str, required) - The transaction hash + + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (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. @@ -15583,7 +15722,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101a4e98d52a5df1bc18cdc98d8c1c34afbe125497930eca2aee488b72932062ba60100000000ffffffff03e8030000000000001600144ea467f94eaca52acac0ee04c5fd37938a96af4800000000000000000c6a0af3adabb38504da911c6bdced08270100000016001400d5152e52ecda510f62bc224a3ca073dad7b6820247304402203a9020efcb55ee1b110b98332546a3b5030d807ff754b083876e46d87af6956902201029b9cac9fc9ccbd49cb49009b692b69f5127448381c1b1e2d19ef675e488f9012102ab7e7a2ba1f07d9f8dfdb4260655d143756a34a46c5af3ab6fd63809268352e100000000" + "result": "02000000000101ff1f7ca064400d77f1315a521d2608b64e2585c778c3004f7ffc6e97536f44f30100000000ffffffff03e803000000000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e00000000000000000c6a0a97c9d5cf40cfb0a1a6dddced0827010000001600141a3f8de361dc4f79c9d3a83cceb9183d5321bc8602473044022041255750faa71c2c4470da8b5d8302abdb16e5a00cfec2ec560f75028ce870ca022074d271780c426ca3e148abfc59c17dc376ae80d7905c71ad614f34760953510a012102fff7c08e2157e344ae7c532dc08d4aa1ff6702708e1ae487c8ad2cb8ec0f37d500000000" } ``` @@ -15605,7 +15744,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 58603 + "result": 61563 } ``` @@ -15678,28 +15817,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63 + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65 }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "quantity": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, "asset_info": { "divisible": true, "asset_longname": null, @@ -15709,22 +15848,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -15734,22 +15873,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", - "block_index": 196, - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "block_index": 198, + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -15759,30 +15898,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729707238.1041224, + "block_time": 1729777005.7045548, "btc_amount": 0, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "destination": "", "fee": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, - "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, + "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -15796,7 +15935,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, @@ -15827,19 +15966,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -15849,7 +15988,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, @@ -15862,7 +16001,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52` (str, required) - The hash of the transaction to return + + tx_hash: `3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d` (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 @@ -15882,28 +16021,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63 + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65 }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "quantity": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, "asset_info": { "divisible": true, "asset_longname": null, @@ -15913,22 +16052,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -15938,22 +16077,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", - "block_index": 196, - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "block_index": 198, + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -15963,30 +16102,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729707238.1041224, + "block_time": 1729777005.7045548, "btc_amount": 0, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "destination": "", "fee": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, - "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, + "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -16000,7 +16139,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 173f25cd10..48ab110fe3 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -2,93 +2,93 @@ "/v2/blocks": { "result": [ { - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", "difficulty": 545259519, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, "confirmed": true }, { - "block_index": 195, - "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", - "block_time": 1729707224, - "previous_block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", + "block_index": 197, + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_time": 1729776988, + "previous_block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", "difficulty": 545259519, - "ledger_hash": "61d7662817cf15d3d892545de3870004d4191aeccba1ace111995a818f7566e2", - "txlist_hash": "6e6e7b7a088ebff6b433713b6a665e9d1bf3a99b8dc72f950796afcbd898b8db", - "messages_hash": "471896ab6baf5db07797d7f2ded0f36290ba5e092111f02cdce8f2d9900ded11", + "ledger_hash": "b30038c228d73eb9c88b2ca971193a018ac3f68720c4647c7ec06c1b21bc5fb2", + "txlist_hash": "c64a47bfdcd98bd1e2ed69b137766afce61271dddfb151c1e3a085ec60b8bee9", + "messages_hash": "72b887cd33f43580d02780aaca8cf764552b57dc6f5a790d9bf8a82231a0d079", "transaction_count": 1, "confirmed": true }, { - "block_index": 194, - "block_hash": "15680b8dd54c5154d98e0f2bc847c3edea83a08008e0d0d1913c58035c72ed6c", - "block_time": 1729707220, - "previous_block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", + "block_index": 196, + "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_time": 1729776983, + "previous_block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", "difficulty": 545259519, - "ledger_hash": "934402e63ccfe7db85edfbdda51e806474fef59c7a5a41c1d1d1d76817a571da", - "txlist_hash": "b05b7c0fcc05b6960ca55c171696399ca82482c1698614239bb7771312ddb1bd", - "messages_hash": "d3f105834888b1910869e34cc27428bdfaa0e29f1625326b13067f4b7c61d284", + "ledger_hash": "5088f90944f94cc039d253ccde60a0635dbca10e17275565cac4203ffb80c832", + "txlist_hash": "4b1dae0241f6d3bb217bbc48ac5bbfa06197c51e91fbf3568bed4c5b132c3f9f", + "messages_hash": "ee79ed17425c3e62d5abeff1fc65a45e788ef9b26e71d686a43fb5d26c29430c", "transaction_count": 1, "confirmed": true }, { - "block_index": 193, - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_time": 1729707215, - "previous_block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", + "block_index": 195, + "block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", + "block_time": 1729776979, + "previous_block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", "difficulty": 545259519, - "ledger_hash": "1d565434cde1ae1c18bce1a7d81b92ca59c41d3adfbfc8fad4204d89025a276b", - "txlist_hash": "07f3b8f789431d9fbba8309e7df2a6c19739bbff0c5485ec6efbaf9002ba56bb", - "messages_hash": "c38e0cc08d1dd4a4a8bab2ac39a0aa0c3dcb13de0cf0d340059371dd5bce4c24", + "ledger_hash": "b84b12aeeeceb76cfc87253fa6e675cb2e4cb3880d87941025f1f6702356178b", + "txlist_hash": "105256948da2848a4ed5f437f3142522bb1a7899af3ddba45f878b50ac0c35cb", + "messages_hash": "8a8395bdb32d083d6ce0216be6106ff9c429bd081fd8df140f820bf0a0f2d118", "transaction_count": 1, "confirmed": true }, { - "block_index": 192, - "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", - "block_time": 1729707202, - "previous_block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", + "block_index": 194, + "block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", + "block_time": 1729776976, + "previous_block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", "difficulty": 545259519, - "ledger_hash": "59c5b68a2a15d6dc351dd4f6b233f9b0890eba12abec79a454b106acd1ede8fd", - "txlist_hash": "bde702719a9df6e5038c4f540c7d2e922d64ed39efc1a70992d7a08aae7d6d29", - "messages_hash": "6ad1b388c7c1793be98b6be7c65090da3462ffe35c33aa7a6fda18139b4c3f83", + "ledger_hash": "b1d37c355f54287466651bfe7ef0a7ba89167cd55d20297ddd388f76295039d6", + "txlist_hash": "441d3c14334c4d1775e40efc63e1c91bfa5e90d5a79003fad5ab48b90b8b40b4", + "messages_hash": "f8d24ea6ba8929cdb4aabcf9d01ecd8659b2af3d4865fde51770dd277b2f3c43", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 191, - "result_count": 96 + "next_cursor": 193, + "result_count": 98 }, "/v2/blocks/": { "result": { - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", "difficulty": 545259519, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, "confirmed": true } }, "/v2/blocks/": { "result": { - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", "difficulty": 545259519, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, "confirmed": true } @@ -96,18 +96,18 @@ "/v2/blocks//transactions": { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -125,43 +125,43 @@ "/v2/blocks//events": { "result": [ { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null }, { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,18 +172,18 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,10 +218,10 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" } ], - "next_cursor": 558, + "next_cursor": 572, "result_count": 14 }, "/v2/blocks//events/counts": { @@ -253,19 +253,19 @@ "/v2/blocks//events/": { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,22 +275,22 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,32 +300,32 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551" + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" } ], "next_cursor": null, @@ -334,17 +334,17 @@ "/v2/blocks//credits": { "result": [ { - "block_index": 196, - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "block_index": 198, + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -355,17 +355,17 @@ "quantity_normalized": "0.00000066" }, { - "block_index": 196, + "block_index": 198, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -376,21 +376,21 @@ "quantity_normalized": "15.00000000" }, { - "block_index": 196, + "block_index": 198, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -403,17 +403,17 @@ "/v2/blocks//debits": { "result": [ { - "block_index": 196, + "block_index": 198, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -424,21 +424,21 @@ "quantity_normalized": "15.00000000" }, { - "block_index": 196, + "block_index": 198, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "object_id": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "block_index": 184, "confirmed": true, - "block_time": 1729707105 + "block_time": 1729776882 }, { "type": "order", - "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, "confirmed": true, - "block_time": 1729707105 + "block_time": 1729776882 }, { "type": "order_match", - "object_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "block_index": 184, "confirmed": true, - "block_time": 1729707105 + "block_time": 1729776882 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "status": "valid", "confirmed": true, - "block_time": 1729707202 + "block_time": 1729776967 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "block_index": 195, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729707224, + "block_time": 1729776979, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -554,11 +554,11 @@ "/v2/blocks//sends": { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -578,11 +578,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -608,29 +608,29 @@ "/v2/blocks//dispenses": { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "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": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -683,10 +683,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, "block_index": 155, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -711,7 +711,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -726,22 +726,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -756,18 +756,18 @@ "/v2/transactions": { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -779,95 +779,98 @@ "btc_amount_normalized": "0.00001000" }, { - "tx_index": 61, - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", - "block_index": 195, - "block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598", - "block_time": 1729707224, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "6e0000000000000001000000000000000164657374726f79", + "tx_index": 63, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_time": 1729776988, + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", "supported": true, - "utxos_info": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9:1", + "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", "confirmed": true, "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, + "message_type": "dispense", + "message_type_id": 13, "message_data": { - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" + "data": "00" } }, - "btc_amount_normalized": "0.00000000" + "btc_amount_normalized": "0.00004000" } ], - "next_cursor": 60, - "result_count": 63 + "next_cursor": 62, + "result_count": 65 }, "/v2/transactions/info": { "result": { - "source": "", - "destination": null, - "btc_amount": null, - "fee": null, - "data": "", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", "decoded_tx": { "version": 2, "segwit": true, - "coinbase": true, + "coinbase": false, "vin": [ { - "hash": "0000000000000000000000000000000000000000000000000000000000000000", - "n": 4294967295, - "script_sig": "015300", + "hash": "39a8913e53502a7b640846053d3cfdca850c4731b184a193c1e19e0ac5560fcb", + "n": 2, + "script_sig": "", "sequence": 4294967295, - "coinbase": true + "coinbase": false } ], "vout": [ { - "value": 5000000000, - "script_pub_key": "0014550b6ff425fadac2efe66d0817448876cd5e4077" + "value": 4000, + "script_pub_key": "001451269fef373ad8fe2dd8fce8dca208f10459c33c" }, { "value": 0, - "script_pub_key": "6a24aa21a9ede2f61c3f71d1defd3fa999dfa36953755c690689799962b48bebd836974e8cf9" + "script_pub_key": "6a0aeefdf3da506923f1fd5a" + }, + { + "value": 4949854000, + "script_pub_key": "00142f61f4a6229425911b5b60caf31a874f19d8cf42" } ], "vtxinwit": [ - "0000000000000000000000000000000000000000000000000000000000000000" + "3044022065046a8e95bbd752a20cf3db6bb6e73a37790b6e2a149470b548c46bccd4f9ee022067a5ee8c077564eefe4f14d0191dc4326ef308c45a13db3360093f2b91a145b001", + "0387b9df27b98064e93726b8588f79ad86a732606b4e887ff96a0396c15a0ad3d1" ], "lock_time": 0, - "tx_hash": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c", - "tx_id": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c" - } + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_id": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2" + }, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00004000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "a427020b568e7a81e34d35e0881b1908445542bc1508a13e7332e7bba8d4e4d5", + "hash": "3adfd2398ce4a22b04fefceb71d3eb2ee66a28233ba39cecd0cba0f4af10ae9e", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -877,20 +880,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2eb63a752647ee27c323fe7dcad1af7281f8bf1c18901ae8b6ac48ccc1ac4c9160be27dd740af8d04e9fce006605d7" + "script_pub_key": "6a2e1b26b4580ff075639ff5ef44e98b020309d1f03fe4660d7611b5159df82098d2abb6906e7a8875783a5ce8494dea" }, { "value": 4999955000, - "script_pub_key": "00142e97e2e1563653c83bf6d71e62a78132245b4d46" + "script_pub_key": "00144e27f9201757a2b45bc47377f51e88f2fc7bdd07" } ], "vtxinwit": [ - "304402201f2c52d6ead64dff96d04bc1739c70f38f8413aeda25673209a9e5a1f351575402206f9f4fe86d85fa15cbbc2416288fb07c3cf2263ed7070dc8a58978fcdd67beec01", - "0211063470b3527db73bd0c05e137fbb770ff8d79dc286942eacf4ea630e87e6bc" + "304402204c730b1849ca9bd584cbf2859a39b6ed49c235a8fae8369e8465b99d46b4681102200e23e042a59214ac85e413b194974a564fe94a5323652eaecae6d47ab9184c4f01", + "02b919f494dfd97e0831b0b73371c81b6b5b4876f7c1881d6f21a32f22e44ec129" ], "lock_time": 0, - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_id": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52" + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_id": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d" }, "unpacked_data": { "message_type": "enhanced_send", @@ -898,7 +901,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -924,18 +927,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -949,18 +952,18 @@ }, "/v2/transactions/": { "result": { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_time": 1729707233, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_time": 1729777001, + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -975,32 +978,32 @@ "/v2/transactions//events": { "result": [ { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1011,20 +1014,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -1034,24 +1037,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1061,24 +1064,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 558, + "event_index": 572, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 196, - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "block_index": 198, + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "msg_index": 1, "quantity": 1500000000, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "status": "valid", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1088,43 +1091,43 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 557, + "next_cursor": 571, "result_count": 12 }, "/v2/transactions//events": { "result": [ { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1135,20 +1138,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -1158,24 +1161,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1185,24 +1188,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 558, + "event_index": 572, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 196, - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "block_index": 198, + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "msg_index": 1, "quantity": 1500000000, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "status": "valid", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1212,22 +1215,22 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 557, + "next_cursor": 571, "result_count": 12 }, "/v2/transactions//sends": { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1235,7 +1238,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1247,11 +1250,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1259,11 +1262,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -1277,29 +1280,29 @@ "/v2/transactions//dispenses": { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1314,7 +1317,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1332,19 +1335,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1354,24 +1357,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1381,36 +1384,36 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], "next_cursor": null, @@ -1419,19 +1422,19 @@ "/v2/transactions//events/": { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1441,24 +1444,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -1468,36 +1471,36 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], "next_cursor": null, @@ -1510,7 +1513,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1520,7 +1523,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -1531,7 +1534,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1541,7 +1544,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -1552,7 +1555,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1562,7 +1565,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -1573,7 +1576,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1583,7 +1586,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -1594,7 +1597,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1604,7 +1607,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -1616,19 +1619,81 @@ }, "/v2/addresses/transactions": { "result": [ + { + "tx_index": 63, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_time": 1729776988, + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 196, + "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_time": 1729776983, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_time": 1729707215, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", + "block_time": 1729776972, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", + "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1664,23 +1729,23 @@ }, { "tx_index": 58, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", - "block_time": 1729707202, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", + "block_time": 1729776967, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "supported": true, - "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", + "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "status": "valid" } }, @@ -1688,17 +1753,17 @@ }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 191, - "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", - "block_time": 1729707198, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", + "block_time": 1729776964, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", + "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1731,279 +1796,139 @@ } }, "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", - "block_index": 190, - "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", - "block_time": 1729707194, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", - "supported": true, - "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 53, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", - "block_index": 187, - "block_hash": "738f28c86aa369eed0bfc906eb5fcfa866238b9dc276bf286ef4ccd562dc7113", - "block_time": 1729707181, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "btc_amount": 2000, - "fee": 10000, - "data": "0bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b37f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "supported": true, - "utxos_info": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c:0", - "confirmed": true, - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "status": "valid" - } - }, - "btc_amount_normalized": "0.00002000" } ], - "next_cursor": 52, - "result_count": 37 + "next_cursor": 56, + "result_count": 39 }, "/v2/addresses/events": { "result": [ { - "event_index": 529, - "event": "OPEN_ORDER", + "event_index": 561, + "event": "DISPENSE", "params": { - "block_index": 193, - "expiration": 21, - "expire_index": 214, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "status": "open", - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "tx_index": 59, - "block_time": 1729707215, - "give_asset_info": { - "divisible": true, + "asset": "TESTLOCKDESC", + "block_index": 197, + "btc_amount": 4000, + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "dispense_index": 0, + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_index": 63, + "block_time": 1729776988, + "asset_info": { "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 + }, + { + "event_index": 560, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "TESTLOCKDESC", + "dispense_count": 1, + "give_remaining": 6000, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "status": 0, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "asset_info": { "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" + "give_remaining_normalized": "0.00006000" }, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "block_index": 193, - "block_time": 1729707215 + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 }, { - "event_index": 528, - "event": "DEBIT", + "event_index": 559, + "event": "CREDIT", "params": { - "action": "open order", - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "asset": "XCP", - "block_index": 193, - "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "quantity": 1000, - "tx_index": 59, + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "block_index": 197, + "calling_function": "dispense", + "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "quantity": 4000, + "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729707215, + "block_time": 1729776988, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "0.00004000" }, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "block_index": 193, - "block_time": 1729707215 + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 }, { - "event_index": 527, + "event_index": 557, "event": "NEW_TRANSACTION", "params": { - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_index": 193, - "block_time": 1729707215, - "btc_amount": 0, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "destination": "", - "fee": 10000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "tx_index": 59, - "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", + "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_index": 197, + "block_time": 1729776988, + "btc_amount": 4000, + "data": "0d00", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "fee": 0, + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_index": 63, + "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", "unpacked_data": { - "message_type": "order", - "message_type_id": 10, + "message_type": "dispense", + "message_type_id": 13, "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000" + "data": "00" } }, - "btc_amount_normalized": "0.00000000" - }, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", - "block_index": 193, - "block_time": 1729707215 - }, - { - "event_index": 523, - "event": "CANCEL_ORDER", - "params": { - "block_index": 192, - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "status": "valid", - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", - "tx_index": 58, - "block_time": 1729707202 - }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", - "block_index": 192, - "block_time": 1729707202 - }, - { - "event_index": 522, - "event": "CREDIT", - "params": { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "asset": "XCP", - "block_index": 192, - "calling_function": "cancel order", - "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", - "quantity": 1000, - "tx_index": 58, - "utxo": null, - "utxo_address": null, - "block_time": 1729707202, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" + "btc_amount_normalized": "0.00004000" }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", - "block_index": 192, - "block_time": 1729707202 + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 } ], - "next_cursor": 520, - "result_count": 179 + "next_cursor": 557, + "result_count": 189 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "quantity": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, "asset_info": { "divisible": true, "asset_longname": null, @@ -2013,22 +1938,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2038,22 +1963,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", - "block_index": 196, - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "block_index": 198, + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -2063,30 +1988,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729707238.1041224, + "block_time": 1729777005.7045548, "btc_amount": 0, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "destination": "", "fee": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, - "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, + "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -2100,7 +2025,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, @@ -2109,7 +2034,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2117,14 +2042,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2132,14 +2057,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2154,19 +2079,19 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "TESTLOCKDESC", - "quantity": 10000000000, + "quantity": 9999990000, "utxo": null, "utxo_address": null, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, - "quantity_normalized": "100.00000000" + "quantity_normalized": "99.99990000" } ], "next_cursor": null, @@ -2175,7 +2100,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2197,16 +2122,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "asset_info": { "divisible": true, "asset_longname": null, @@ -2218,16 +2143,16 @@ }, { "block_index": 184, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "event": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "asset_info": { "divisible": true, "asset_longname": null, @@ -2239,20 +2164,20 @@ }, { "block_index": 161, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "event": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2260,20 +2185,20 @@ }, { "block_index": 158, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", + "event": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707057, + "block_time": 1729776846, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2285,16 +2210,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "event": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "tx_index": 39, - "utxo": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", - "utxo_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "utxo": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", + "utxo_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "confirmed": true, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2306,18 +2231,39 @@ }, "/v2/addresses/
/debits": { "result": [ + { + "block_index": 196, + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "asset": "TESTLOCKDESC", + "quantity": 10000, + "action": "open dispenser", + "event": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_index": 62, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729776983, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00010000" + }, { "block_index": 193, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,16 +2275,16 @@ }, { "block_index": 191, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707198, + "block_time": 1729776964, "asset_info": { "divisible": true, "asset_longname": null, @@ -2350,16 +2296,16 @@ }, { "block_index": 190, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -2371,49 +2317,28 @@ }, { "block_index": 190, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" - }, - { - "block_index": 185, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "asset": "XCP", - "quantity": 10000, - "action": "open order", - "event": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx_index": 51, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729707172, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" } ], - "next_cursor": 43, - "result_count": 20 + "next_cursor": 44, + "result_count": 21 }, "/v2/addresses/
/bets": { "result": [], @@ -2424,9 +2349,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", + "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", "block_index": 137, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2434,7 +2359,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706957, + "block_time": 1729776753, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2445,14 +2370,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "649c26715a5677a8a818a199c2b672fca8d541b44b4d0cc9163d0f87ddfc2173", + "tx_hash": "d3eb98025f98da1c60732f1b5f9b963134fa8c3558c428b6ec2e288f5d3be7dd", "block_index": 112, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729706850, + "block_time": 1729776660, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2464,10 +2389,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2475,7 +2400,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -2488,10 +2413,10 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2499,11 +2424,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2512,10 +2437,10 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2523,11 +2448,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2536,10 +2461,10 @@ }, { "tx_index": 39, - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "block_index": 152, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2547,11 +2472,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2560,10 +2485,10 @@ }, { "tx_index": 36, - "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", + "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", "block_index": 149, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2571,11 +2496,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707018, + "block_time": 1729776810, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2590,10 +2515,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "block_index": 151, - "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", - "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", + "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2601,11 +2526,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707027, + "block_time": 1729776818, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2620,10 +2545,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2631,11 +2556,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2644,10 +2569,10 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2655,11 +2580,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2668,10 +2593,10 @@ }, { "tx_index": 39, - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "block_index": 152, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2679,11 +2604,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2692,10 +2617,10 @@ }, { "tx_index": 36, - "tx_hash": "7a94fe30034efb5a06c6ca67383ebfa960757e256ef6b2500ba262dc63a2ced8", + "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", "block_index": 149, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4:1", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2703,11 +2628,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707018, + "block_time": 1729776810, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2722,10 +2647,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "block_index": 151, - "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", - "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", + "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2733,11 +2658,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707027, + "block_time": 1729776818, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -2752,9 +2677,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2763,7 +2688,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2773,7 +2698,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -2786,17 +2711,54 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" } ], "next_cursor": null, - "result_count": 1 + "result_count": 2 }, "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2805,7 +2767,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2815,7 +2777,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -2832,22 +2794,71 @@ }, "/v2/addresses/
/dispenses/sends": { "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2855,7 +2866,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2870,7 +2881,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -2884,19 +2895,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2904,7 +2915,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2919,7 +2930,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -2932,26 +2943,75 @@ } ], "next_cursor": null, - "result_count": 2 + "result_count": 3 }, "/v2/addresses/
/dispenses/receives": { "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2959,7 +3019,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2974,7 +3034,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -2988,19 +3048,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3008,7 +3068,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3023,7 +3083,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -3036,26 +3096,26 @@ } ], "next_cursor": null, - "result_count": 2 + "result_count": 3 }, "/v2/addresses/
/dispenses/sends/": { "result": [ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3063,7 +3123,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3078,7 +3138,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -3092,19 +3152,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3112,7 +3172,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3127,7 +3187,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -3147,19 +3207,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3167,7 +3227,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3182,7 +3242,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -3196,19 +3256,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3216,7 +3276,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3231,7 +3291,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -3250,16 +3310,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -3270,14 +3330,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -3292,20 +3352,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", + "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -3320,20 +3380,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729707086, + "block_time": 1729776855, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", + "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -3348,20 +3408,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707072, + "block_time": 1729776850, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", + "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -3376,20 +3436,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707057, + "block_time": 1729776846, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -3404,7 +3464,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3418,8 +3478,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -3427,16 +3487,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -3444,16 +3504,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -3461,16 +3521,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -3478,16 +3538,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -3495,8 +3555,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729706911, - "last_issuance_block_time": 1729706927, + "first_issuance_block_time": 1729776712, + "last_issuance_block_time": 1729776728, "supply_normalized": "0.00000000" } ], @@ -3509,8 +3569,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -3518,16 +3578,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -3535,16 +3595,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -3552,16 +3612,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -3569,16 +3629,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -3586,8 +3646,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729706911, - "last_issuance_block_time": 1729706927, + "first_issuance_block_time": 1729776712, + "last_issuance_block_time": 1729776728, "supply_normalized": "0.00000000" } ], @@ -3600,8 +3660,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -3609,16 +3669,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -3626,16 +3686,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -3643,16 +3703,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -3660,16 +3720,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -3677,8 +3737,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729706911, - "last_issuance_block_time": 1729706927, + "first_issuance_block_time": 1729776712, + "last_issuance_block_time": 1729776728, "supply_normalized": "0.00000000" } ], @@ -3687,19 +3747,58 @@ }, "/v2/addresses/
/transactions": { "result": [ + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 196, + "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_time": 1729776983, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "block_hash": "0401e860d429a75a9e088cfe331b73f24e7a3ab0d587d04f87603b9fd4bab3e9", - "block_time": 1729707215, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", + "block_time": 1729776972, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb:1", + "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3735,23 +3834,23 @@ }, { "tx_index": 58, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_hash": "28a415a79650782324aa6ad86bfa3c84bcf00497e2bd0ec8faa8b9f150374343", - "block_time": 1729707202, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", + "block_time": 1729776967, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "469d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "supported": true, - "utxos_info": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2:1", + "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "status": "valid" } }, @@ -3759,17 +3858,17 @@ }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 191, - "block_hash": "58c0828946618292cd817e174b0dfe1c0e66bd752a23eeaad99b115392ca3cf3", - "block_time": 1729707198, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", + "block_time": 1729776964, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40:1", + "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3805,17 +3904,17 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "block_hash": "5b0c37491443487885cc2c9e7a0765a47b6089c4a5c1a987a2274bf4255fd528", - "block_time": 1729707194, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "block_hash": "36570d30f2c8a11ef5eb589231faff30448991762f60b197be923a4f46e4915c", + "block_time": 1729776961, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003808d415efb3d25682f32cc04efaa6b1b024395313580d4e34c77c78e01941387ee6542fa157700ba2ad1802e97e2e1563653c83bf6d71e62a78132245b4d46400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "030003802f61f4a6229425911b5b60caf31a874f19d8cf4280c9a769a241e84c930a7effea9ae52dcf5bd948c9804e27f9201757a2b45bc47377f51e88f2fc7bdd07400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27:0", + "utxos_info": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3823,14 +3922,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -3838,7 +3937,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3854,75 +3953,29 @@ ] }, "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "block_index": 185, - "block_hash": "0d86fd96dc3fee263f9cf2f0ce83888049645b5043510414bb536b1a6edffa54", - "block_time": 1729707172, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000027100000000000000000000000000000271000150000000000000000", - "supported": true, - "utxos_info": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 10000, - "get_asset": "BTC", - "get_quantity": 10000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 49, - "result_count": 25 + "next_cursor": 51, + "result_count": 26 }, "/v2/addresses/
/dividends": { "result": [ { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -3944,9 +3997,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -3961,7 +4014,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3987,9 +4040,9 @@ }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4004,7 +4057,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4030,9 +4083,9 @@ }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4047,7 +4100,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4073,9 +4126,9 @@ }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4090,7 +4143,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4121,10 +4174,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, "block_index": 155, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4149,7 +4202,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4158,10 +4211,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4186,7 +4239,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729706948, + "block_time": 1729776746, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4198,10 +4251,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "tx_index": 18, "block_index": 131, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4226,7 +4279,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729706931, + "block_time": 1729776731, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4238,10 +4291,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "tx_index": 14, "block_index": 130, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4266,7 +4319,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729706927, + "block_time": 1729776728, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4278,10 +4331,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "tx_index": 10, "block_index": 125, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4306,7 +4359,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4324,22 +4377,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4348,22 +4401,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", + "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706944, + "block_time": 1729776742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4372,22 +4425,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", + "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", "tx_index": 20, "block_index": 133, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706939, + "block_time": 1729776739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4396,22 +4449,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", + "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", "tx_index": 19, "block_index": 132, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706935, + "block_time": 1729776736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4420,22 +4473,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5c7fc7e50dc4c7041d440914ca5a755965790114e82568e20e5fc7b81d398fec", + "tx_hash": "cb1e289bbef3e8dd411c8e7ab46bd4311ebb2f232c0f000389a2772bb13aec69", "tx_index": 15, "block_index": 127, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706915, + "block_time": 1729776716, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4444,22 +4497,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4474,22 +4527,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4507,7 +4560,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4517,9 +4570,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985819, - "btc_fee": 14181, - "rawtransaction": "0200000000010187c512403ed63cc3ba2e281271a23061df2e1689603ff74b80f36b772daff10400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29859ec55eb3bfcaa16f9e3e53cadb0b44604b608820a20637c23c25a4a0419904638e572b1dbca36a9b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985102, + "btc_fee": 14898, + "rawtransaction": "0200000000010107ef201f70435ccfd55c0672e94c2e89749a4ab265571941c1f792e4e861961c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a29abc6f3ee51a1acfa5f2baac9cfd477da39c89dd5847527c5c38a6dec6d1ef84cb43c1ddccb9d569bc6ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4537,23 +4590,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" }, "name": "btcpay", - "data": "434e5452505254590bb418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "data": "434e5452505254590bc614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b254172c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978951, - "btc_fee": 18049, - "rawtransaction": "020000000001013ceaeeef9163c765d415596ef1f4caac86503221412ad57900132caaf9d6c65b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03b80b000000000000160014550b6ff425fadac2efe66d0817448876cd5e407700000000000000004b6a4906a00e613b4cee020592a6cbbaa30b1a133ca66613c2039fc191a991df25b33a724bc144f2a8f24c44517781896c042b70d0665b615b1883f6d441450cccc1ffb198b2eb24281eefdfc79f052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999978039, + "btc_fee": 18961, + "rawtransaction": "02000000000101196b9f3fe3445aedae519e648a518ef0402d96c41b372bd6840716d264fef0a20000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03b80b00000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c00000000000000004b6a49f830428a708cd1fd8f241c599f8bf4bb12eae2a2050b11a1fc7f6223969d734b36cfbbf05fc5fe5da66565533b585efaa92b7e81c5bab5c9f3c3da1cfee34d57c8c45c714e1a513d17379c052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "status": "valid" } } @@ -4562,7 +4615,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "quantity": 1000, "overburn": false }, @@ -4570,29 +4623,29 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985815, - "btc_fee": 13185, - "rawtransaction": "0200000000010179e4143a09a107f47b85d1ae6fd2850282f939cf47d57334910f04b944b189aa00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac97ba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000" + "btc_change": 4999985149, + "btc_fee": 13851, + "rawtransaction": "0200000000010148cd77c086ac758b3dec28f0cc0429d62a6f83cbfcc1b97f3c60d0bd7fb3c0cb0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acfdb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb" + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343" }, "name": "cancel", - "data": "434e545250525459469a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "data": "434e5452505254594630cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985819, - "btc_fee": 14181, - "rawtransaction": "02000000000101235696618de711c3817a7cca2701aaddb1c5fb266d95500b91cb26765d29fee900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff0200000000000000002b6a29f79854e51381bd27aacac11b20eea25e70872ecf49b677fee13cb705ca68abcefd660a9f4f48ef402b9bba052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985102, + "btc_fee": 14898, + "rawtransaction": "020000000001018be64a85dcf8f1e03cc49ce87cd59912751d72c02fd7cabde0737765f25443280000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a2990471152c6dae4f78c15c0cc28fc62d158bcf6eb2712ad03a8196ea680abcad8ea1fab6fadb412cd23ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "status": "valid" } } @@ -4601,7 +4654,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4618,9 +4671,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986346, - "btc_fee": 13654, - "rawtransaction": "020000000001012bee2e38dfb041799c2308e4614c1e732e65cd92a8f6630588af2b2c0665f17f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000226a20930ff6501a29ef43923f0f26f4db09d88746b6143f4279df54684904ef9bc136aabc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985656, + "btc_fee": 14344, + "rawtransaction": "020000000001012914188be4dcc990bce10565885ed74e9aa3d224fc723970afa56faa09045cc80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000226a2090f0b966e5633148ff12146fb7aa097e4e6cb8580b60e26427157d4a202e0b0af8b9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4636,7 +4689,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4658,9 +4711,9 @@ "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949970000, "btc_out": 0, - "btc_change": 4949955760, - "btc_fee": 14240, - "rawtransaction": "02000000000101cc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc302000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b2526ffffffff0200000000000000002c6a2a1c00957e5fe032db14274a2c28e7a740ee8fdd5dc4dbf36a84fc4191bf757a2c33530c552ea9a11d6148b0540a2701000000160014486fe5a1e80e7b8493a0e0c89f8a4339d27b252602000000000000", + "btc_change": 4949955041, + "btc_fee": 14959, + "rawtransaction": "0200000000010130926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c502000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2cffffffff0200000000000000002c6a2a203a4b40308e3242e039cc4bf6a43a4dcc9dac389852cd90ced81eee3c31e13463c41f6e7b6eb211a19ae1510a2701000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2c02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4682,14 +4735,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4706,9 +4759,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986287, - "btc_fee": 13713, - "rawtransaction": "0200000000010141ac03f1b77ba5eeb09f53c0a97248429efd89a06ad9ae66e92acead08f7d4a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a215bc1a118ae8c811789ad518e8ceeed229d9f8ceda3b106fd917da9b4da6a429de46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985595, + "btc_fee": 14405, + "rawtransaction": "020000000001014bee57899ff6f759ebbf6a408801fad2b959912e9311539fa225a729d0cead230000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a2126bb39b583d91f5f66edd1580705f0dbcc4fcd00d3d03b703de3f7f7dbd5a5cef6bbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4725,10 +4778,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "transfer_destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "lock": false, "reset": false, @@ -4739,9 +4792,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983749, - "btc_fee": 15705, - "rawtransaction": "0200000000010126982455051478f76a5dd4d40736b953b7a6d9f65782618e2febafd5cc3eb83900000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff032202000000000000160014550b6ff425fadac2efe66d0817448876cd5e40770000000000000000236a21d482901ac646d880017c681e71228e63b89f7ab94de9b88b6ea9aa3ef45e2bd58b85b2052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999982956, + "btc_fee": 16498, + "rawtransaction": "02000000000101859ea9abed55ed65724d765e5189070cf600fc37e2bc290a941eaebca0def2a80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03220200000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c0000000000000000236a217a796f64f1291997a2369733a3853d3d2b2bee8bb06629a6a5e0fbe51df7c2342e6caf052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4766,16 +4819,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", 1 ], [ "MYASSETA", - "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", 2 ] ], @@ -4783,26 +4836,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280550b6ff425fadac2efe66d0817448876cd5e4077808d415efb3d25682f32cc04efaa6b1b02439531358f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e5452505254590300028051269fef373ad8fe2dd8fce8dca208f10459c33c802f61f4a6229425911b5b60caf31a874f19d8cf428f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999945492, - "btc_fee": 52508, - "rawtransaction": "0200000000010446990a86e10fd1cba8f8434757592bc75bed5d5a4475c0f8d261794d215755f000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff16fad3c739326215e75b69eb121c5513c282cbd184f3ab0b704101650753fc3c00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff443e82a2ab092757b67942c87c0ebfdac4a9bf302aa51b8bc1883748536b4e4d00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff65e5a8be62d6b8eb38ae6bcb8054be7d8efc86498417cec1c21917b5da9b693f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff03e8030000000000006951210240cde7e337f6ecb8c9c504468aea18a702a6f6166f0390ef0adf0de6a912155921031fffc323267caf31de068258183e5badf7471d257d7d6dfb1d3ddd017429e2592102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee803000000000000695121024fcde7e337f6ecb8c9e6732b78d377e9d4030ccca1f9ed09b5e8496edfdf4bb121035f880bae6722540cfb6ea56ad43ab4079c5c1d66e84c58743f75b86d1846ce582102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53ae14f316a804000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000000000000", + "btc_change": 19999942840, + "btc_fee": 55160, + "rawtransaction": "0200000000010498bb09d7acee93bd9460f979697a5817a2dc87b58d5ab2a25fbec8a869ce70d60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff200f97ce0f1dfa89e0a5ecf77f68ec1862cafdd753510ac7798b8081b69c9e650000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff48849d4e48c11080f86ec931ff9bd4dfd0ea5091aa752ef946f0d8ac331bc5640000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffe2ee030c19c5b64633b5a0909c50a5a1897adb1914e17aff4842e4c3198eed8c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03e80300000000000069512103b7febaabfa9e6f48cdcfadc0fc4b2dd90df15a4e69132d18302b8c5e32c884d12102508932dd48b41d4cb5758a551ade1b8a4de7c3797f09e52bc57ba9fd1b3890e221036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee80300000000000069512102b8febaabfa9e6f48cdecdaad0e766f67c04660969b2b6e6f6fd72e56c3ccdd1e210293b5faf22940bb6e2150134e41bed17957608e60a7c6a7a4e733cc917757bcf721036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aeb8e816a80400000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4814,7 +4867,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4831,7 +4884,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -4843,9 +4896,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985233, - "btc_fee": 14767, - "rawtransaction": "02000000000101483513635aa06d06f24a39fa24ec9c38c800ad6b83cfc7c088363935682a5db800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000356a33e8edf1f978a10e70b60a2a1f65e7e9e096d71f7eebcf26a2c46580fa448755c1e6f15ec4c147f4d770d8ee5564d40ef9486a7351b8052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999984487, + "btc_fee": 15513, + "rawtransaction": "02000000000101d6d6c20ac623cf5f78c4d26d1416c9a30747c6cf8491dd3fbfc29c3e38d879ae0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000356a338ce6193b4ca4c9f04de91f1cbbd96936ed2065e0c8c751d8a78840942e2fdc186c8375b00aac03f08eaff3c641e5643009173a67b5052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4867,8 +4920,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4884,19 +4937,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8808d415efb3d25682f32cc04efaa6b1b0243953135", + "data": "434e54525052545902000000000000000100000000000003e8802f61f4a6229425911b5b60caf31a874f19d8cf42", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985526, - "btc_fee": 14474, - "rawtransaction": "02000000000101a211b1af02e70933b2646e3b6abf7f98da9b9227e581475d8ec507aaac1248f400000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000306a2eb19d9b3eb2c8170334952bb6cb6154cadb6db7758dcfdba4939a0c5df03058801ed4468674c28fa46fcea514fd6276b9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999984794, + "btc_fee": 15206, + "rawtransaction": "02000000000101f7a7defcbc2424b8fcbbad72954ac1bfa9b05c6284de0ef8fdfcaef4b62917a30000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000306a2e9c5c778ec81d6e17ce3b0d8f983ef03a95798ef045e5e049a168fe1b2e1736f53a90ede4e9a4edee9e5bd51d6cd39ab6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "memo": null, "quantity_normalized": "0.00001000" } @@ -4906,23 +4959,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904808d415efb3d25682f32cc04efaa6b1b024395313507ffff", + "data": "434e54525052545904802f61f4a6229425911b5b60caf31a874f19d8cf4207ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986287, - "btc_fee": 13713, - "rawtransaction": "0200000000010167b6ebe34ace4a228983468b682eb9e2c7f4445dd71edef4d97c3abf35c1f86f00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000236a21490b19f1c282f0724c4ce3496b99ac13c3e0e44673797f363699361817689ec3c46fbc052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999985595, + "btc_fee": 14405, + "rawtransaction": "02000000000101a149c4cd87d1d151c2a93952a35891c5898258795de2350eaa1804497abff6730000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a21b1bdc6cc2f16adb27ce78141657b084106d0ee79ca9d56b1959a6e50b8a0844d2abbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "flags": 7, "memo": "ffff" } @@ -4932,17 +4985,17 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", - "btc_in": 4949868000, + "btc_in": 4949854000, "btc_out": 1000, - "btc_change": 4949852643, - "btc_fee": 14357, - "rawtransaction": "020000000001018ce1178e2d7b780aa87ae8eadfd7894887dc66096aff23fcdb15038e3238fe0a020000001600148d415efb3d25682f32cc04efaa6b1b0243953135ffffffff03e8030000000000001600142e97e2e1563653c83bf6d71e62a78132245b4d4600000000000000000c6a0a9957eadb4d8f6b31a775e3c10827010000001600148d415efb3d25682f32cc04efaa6b1b024395313502000000000000", + "btc_change": 4949837918, + "btc_fee": 15082, + "rawtransaction": "02000000000101e2bda465882c0adf7f46864df9deceaba3b74c0c47b931647d46799360d5d29d020000001600142f61f4a6229425911b5b60caf31a874f19d8cf42ffffffff03e8030000000000001600144e27f9201757a2b45bc47377f51e88f2fc7bdd0700000000000000000c6a0a61d5685fa6108486fa7c5e880827010000001600142f61f4a6229425911b5b60caf31a874f19d8cf4202000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4955,7 +5008,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -4984,9 +5037,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985467, - "btc_fee": 14533, - "rawtransaction": "02000000000101defc0059407d9de2daa2ca41db9fe3c30c7af10b52a08d63c864f67ddd48dacd00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000316a2fc8629d53c3ce824d1aa1c88d7a1efebc7672ca686c9c700d567ce3ed840b8dd6d7a162e2a58a322f4416dcc6e28afb3bb9052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999984733, + "btc_fee": 15267, + "rawtransaction": "02000000000101e92454ae77e444ac9a980d20447664139decf6e5f4f1c78ea506bc525c2b34980000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000316a2f01c9b40be49ad414f0d78fbfc00f8dcd3314bbdd1cacc0774eceb8c9692f5f9b9bd6de91ee55108869848a9e64ac025db6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5021,13 +5074,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5037,9 +5090,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999987049, - "btc_fee": 12951, - "rawtransaction": "02000000000101800e5e3b142f757b37d56ff953812fd69f909668d81193198ba47c6d782f7c9000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff020000000000000000166a144b1a8b69820af8f3bf9002285cfe5642a1d7562c69bf052a01000000160014550b6ff425fadac2efe66d0817448876cd5e407702000000000000", + "btc_change": 4999986395, + "btc_fee": 13605, + "rawtransaction": "02000000000101d04e1298b5b5c49dfc4d4caf1897e44c6622b3c50111213ffb7e347c792d65a10000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000166a1488f4dd8559678f00388733966b5b22a32fc2ad86dbbc052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5054,8 +5107,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "78acb082f3a3316baa2a5651f558cf94f2f3b370bf5c29909e560437f0d8897c:0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5068,12 +5121,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c373861636230383266336133333136626161326135363531663535386366393466326633623337306266356332393930396535363034333766306438383937633a307c5843507c31303030", + "data": "434e5452505254596462637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c396464326435363039333739343637643634333162393437306334636237613361626365646566393464383634363766646630613263383836356134626465323a307c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999918531, - "btc_fee": 78469, - "rawtransaction": "02000000000106908123fbb702fc2c02fe7e30826107f5d64cb87d00f135883b4dc02d20b7a31000000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff50747a820f31ab003a977ce47ad7bfc17bdc4e3e6c6c7503814342cbed5b08a600000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff27f96f1203bcb1a72454289bb1a0325adea93e7d504f2edf1eb829c591379c2800000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff390aad27075ad44eb52ee316fa02e880605fdf8c86d495b179162a6044ed3a1100000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04dca7d1186d9cc2e6ce754a6a354275e6ca2af650f2ce42c4bc072a3db5b17700000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff25d7ebddb86c7fd7c4f3eba18c98eab8aec616150959094899ad2041aa42c91b00000000160014550b6ff425fadac2efe66d0817448876cd5e4077ffffffff04e80300000000000069512102f7fef05d8f73f05c30e63d6d3c86e001fa4b78e96097a0f83a4bd5f785a5130c2103c648efd2d3578fd732fa43d67b2bc76e829c68a085ce544b623f75c1688926a42102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512102f7fef05d8f73f05c30b0393d2fc1e241fe1c20e33e97e5f7630ed7b489f01cf12102d815eecd91468fcc66ba1ecc296bd72ed3dd39ef92831607613423c43add26772102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aee80300000000000069512103ddfef05d8f73f05c30ba66392dc8e10c903d11fe3dc6e0f1563fb181bcc87fa22103be2cdaaba320bcae558d2eae4f5eb41ceae409d6f7b62037550714a20ab91e452102090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e53aec36d22fc06000000160014550b6ff425fadac2efe66d0817448876cd5e407702000002000002000002000002000002000000000000", + "btc_change": 29999914568, + "btc_fee": 82432, + "rawtransaction": "020000000001061e6c164906bb1485bb2cde32a51249e9daee2c98cdfabe196b4f42abcc233e540000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff6b16bd31bf58a6d2813afc535c2a9baab74c05a464afe68a19cc665d6367b8320000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff81868f3768ceba92e6c2dcf97441a1d86a7216d29bd0f1fc5376d9e7c67d8b7e0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffeaa9b753846d6030087bf4832e25c414ccff802dc8ee0625e0d50fd5763701a60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff4a5c203ab326b276327a588ae223c2d1a6a9845c10d214654d3d97fac54793930000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff8c8dfa09ef943b0a7388d3e71344b52d7cd89cbefc3ebf4cef7329418c9e904a0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff04e8030000000000006951210371b03d6a1625098144b14e2028248d520be6e258487524fa75fa8eea88fe95982103e4080ffe7994d8b2525fc2738aa64ac6596add54d528b0df449d2e5a3b80a6a621036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee8030000000000006951210371b03d6a1625098144e515706d6988150efbba0a172923ab79b9c8b9c9e9807a2103b00552aa7f92daa5500e823dd7f00f971a33d655d474b0911ec1725e6ad4a4cc21036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee803000000000000695121035bb03d6a1625098144b74826686a8c5f61dcdc42152871a24d8ef8dafd8ae2072103876461cb1df1bfc13568bb09b3c839a32c04b031b244d1a37df94a685fb590a021036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53ae485e22fc0600000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5086,8 +5139,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5100,12 +5153,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964366432373436303830623463313336643463373333376564383065643739666135356463303161633630323733653434643365366634353430646335313535313a307c6263727431713235396b6c6170396c746476396d6c786435797077337967776d7834757372687861767278747c5843507c31303030", + "data": "434e54525052545964633465303231633935623533343064636338333663363761633331393363363832626264333833366166326161663039613732626538386338373930353937303a307c62637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950030353, - "btc_fee": 46647, - "rawtransaction": "02000000000103481af936583b31262298b94d80e20c832223a8ff9ad044a4340817c5fbe3fbd7010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffffcc028b6b716b892227ef3f6231501904d484c6cdc68590fcd6db782151a11cc3000000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff91b6474b9dcf49c4951fd4b33b5debe95223806c26c86d346f528e02e72ae44e010000001600144ea467f94eaca52acac0ee04c5fd37938a96af48ffffffff04e8030000000000006951210379d3a33010997c332d081af3a69d7f38603c1ddeb9cbdf791eb8360cbc7c1bdb210328b5ae1b7c78dded46847f04afffe3a51a10816a6ccb9a14cae6ccface958dd1210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210379d3a33010997c332d0a18a2a09a2f6d65351889bc92de364abf701bba3e1afc21022ae9a14f2d6d80b60b866808f7f7f8f11e08922b6f80ca50c2aacceb8e82d371210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453aee8030000000000006951210353d3a33010997c332d144de1e6d23f7208477dc0bc98de7a28dc026f8b4f284321031fd0ca234c1db9da7fe21e319a9b80952b71e25c5cf9ad27afd2f89efdf0bbe6210361fe1ebf2444cc427c3453bc24e70fb64a647ff540ce908bd0dc7dcc0c1d574453ae11780b27010000001600144ea467f94eaca52acac0ee04c5fd37938a96af4802000002000002000000000000", + "btc_change": 4950027996, + "btc_fee": 49004, + "rawtransaction": "02000000000103f1604d0af281e6f17db2b6a2630436089bf38359f64c4da626e33d53785c96a701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff30926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c500000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff0b25b8939d7a1b47a973d68655533b29ed214696bc3426e366ec983bc0440dc801000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff04e803000000000000695121022ed54a7ffabca05e51fdb26294d94154ecf2fcc7d9c6c45785bc66229f31171d2103c2c91a59928368eb1c73ca259ed4248fb11c3e2808f6789385e74d5d599ec1c22102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee803000000000000695121032ed54a7ffabca05e51fce96e92d1445cbffef092dccfc01b83bc776e9d76461721028d901d56ccd739e00b33c26288c123d0e71a6c2c09b77ec59aad4d521dc9d6c32102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee8030000000000006951210304d54a7ffabca05e51f7bc3396851219d78899d9ddc5c057e1df051aac07741c2102f4fe7b3aa1b251d87f45f217fcb640bc892f08496ec419f2e3d7743c6eaca3332102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aedc6e0b2701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5121,8 +5174,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -5130,16 +5183,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729707057, - "last_issuance_block_time": 1729707086, + "first_issuance_block_time": 1729776846, + "last_issuance_block_time": 1729776855, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "owner": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "owner": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "divisible": true, "locked": false, "supply": 100000000000, @@ -5147,16 +5200,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729707053, - "last_issuance_block_time": 1729707053, + "first_issuance_block_time": 1729776842, + "last_issuance_block_time": 1729776842, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 100000000000, @@ -5164,16 +5217,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729707014, - "last_issuance_block_time": 1729707014, + "first_issuance_block_time": 1729776806, + "last_issuance_block_time": 1729776806, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 40, @@ -5181,16 +5234,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729706948, - "last_issuance_block_time": 1729706952, + "first_issuance_block_time": 1729776746, + "last_issuance_block_time": 1729776750, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 19, @@ -5198,8 +5251,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729706931, - "last_issuance_block_time": 1729706944, + "first_issuance_block_time": 1729776731, + "last_issuance_block_time": 1729776742, "supply_normalized": "0.00000019" } ], @@ -5211,8 +5264,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 10000000000, @@ -5220,15 +5273,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729706893, - "last_issuance_block_time": 1729706906, + "first_issuance_block_time": 1729776696, + "last_issuance_block_time": 1729776708, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5236,14 +5289,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5251,7 +5304,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5264,7 +5317,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5286,9 +5339,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5303,7 +5356,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5329,9 +5382,9 @@ }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5346,7 +5399,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5372,9 +5425,9 @@ }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5389,7 +5442,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5415,9 +5468,9 @@ }, { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5432,7 +5485,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5458,9 +5511,9 @@ }, { "tx_index": 52, - "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5475,7 +5528,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5506,13 +5559,13 @@ "/v2/assets//matches": { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5526,7 +5579,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5546,13 +5599,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5566,7 +5619,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5586,13 +5639,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "tx0_index": 49, - "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 50, - "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5606,7 +5659,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5633,20 +5686,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5654,20 +5707,20 @@ }, { "block_index": 125, - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", + "event": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5675,20 +5728,20 @@ }, { "block_index": 124, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5696,20 +5749,20 @@ }, { "block_index": 124, - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "event": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5721,16 +5774,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5743,17 +5796,17 @@ "/v2/assets//debits": { "result": [ { - "block_index": 196, + "block_index": 198, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -5765,16 +5818,16 @@ }, { "block_index": 195, - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "event": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707224, + "block_time": 1729776979, "asset_info": { "divisible": true, "asset_longname": null, @@ -5786,16 +5839,16 @@ }, { "block_index": 194, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { "divisible": true, "asset_longname": null, @@ -5807,16 +5860,16 @@ }, { "block_index": 194, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { "divisible": true, "asset_longname": null, @@ -5828,16 +5881,16 @@ }, { "block_index": 193, - "address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "asset_info": { "divisible": true, "asset_longname": null, @@ -5855,20 +5908,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -5890,14 +5943,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", + "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -5912,20 +5965,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -5940,20 +5993,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -5968,20 +6021,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -5996,7 +6049,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729706893, + "block_time": 1729776696, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6007,11 +6060,11 @@ "/v2/assets//sends": { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6019,7 +6072,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -6032,10 +6085,10 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6043,7 +6096,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -6056,10 +6109,10 @@ }, { "tx_index": 55, - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", "block_index": 189, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -6067,7 +6120,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707189, + "block_time": 1729776956, "asset_info": { "divisible": true, "asset_longname": null, @@ -6080,10 +6133,10 @@ }, { "tx_index": 44, - "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", + "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", "block_index": 157, - "source": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", - "destination": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", + "destination": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6091,7 +6144,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707053, + "block_time": 1729776842, "asset_info": { "divisible": true, "asset_longname": null, @@ -6104,10 +6157,10 @@ }, { "tx_index": 43, - "tx_hash": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691", + "tx_hash": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b", "block_index": 156, - "source": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", - "destination": "4ee42ae7028e526f346dc8266c802352e9eb5d3bb3d41f95c449cf9d4b47b691:0", + "source": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", + "destination": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6115,7 +6168,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707048, + "block_time": 1729776837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6134,9 +6187,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6145,7 +6198,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6155,7 +6208,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6171,9 +6224,9 @@ }, { "tx_index": 29, - "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", + "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", "block_index": 142, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6182,7 +6235,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6192,7 +6245,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706978, + "block_time": 1729776772, "asset_info": { "divisible": true, "asset_longname": null, @@ -6208,9 +6261,9 @@ }, { "tx_index": 30, - "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", + "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", "block_index": 150, - "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", + "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6218,10 +6271,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6229,7 +6282,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729707022, + "block_time": 1729776814, "asset_info": { "divisible": true, "asset_longname": null, @@ -6245,18 +6298,18 @@ }, { "tx_index": 33, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6266,7 +6319,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -6287,9 +6340,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6298,7 +6351,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6308,7 +6361,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6336,7 +6389,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6344,7 +6397,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6353,7 +6406,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6361,7 +6414,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6370,7 +6423,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6378,7 +6431,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6387,7 +6440,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6400,29 +6453,29 @@ "/v2/assets//dispenses": { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6437,7 +6490,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -6451,27 +6504,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", + "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", "block_index": 147, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6486,7 +6539,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707010, + "block_time": 1729776802, "asset_info": { "divisible": true, "asset_longname": null, @@ -6500,19 +6553,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6520,7 +6573,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6535,7 +6588,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -6549,19 +6602,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6569,7 +6622,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6584,7 +6637,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -6605,8 +6658,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "owner": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false, "supply": 0, @@ -6614,8 +6667,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729707072, - "last_issuance_block_time": 1729707072, + "first_issuance_block_time": 1729776850, + "last_issuance_block_time": 1729776850, "supply_normalized": "0.00000000" } ], @@ -6625,10 +6678,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "tx_index": 10, "block_index": 125, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6653,7 +6706,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6671,22 +6724,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "443a4a142ad9b610044023810c024c714e926b05a4b3b3d6c4ad124c2ccba4bb", + "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", "tx_index": 13, "block_index": 125, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6695,22 +6748,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc", + "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", "tx_index": 12, "block_index": 124, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706902, + "block_time": 1729776704, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6719,22 +6772,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6749,22 +6802,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "e21454168b9205e1fa42b58978c130cca4e1acba922130e128c1581c1a82f4f4", + "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", "tx_index": 11, "block_index": 123, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706898, + "block_time": 1729776699, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -6780,9 +6833,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6797,7 +6850,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6823,9 +6876,9 @@ }, { "tx_index": 52, - "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6840,7 +6893,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6866,9 +6919,9 @@ }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6883,7 +6936,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6909,9 +6962,9 @@ }, { "tx_index": 54, - "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "block_index": 188, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6926,7 +6979,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6952,9 +7005,9 @@ }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6969,7 +7022,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7000,9 +7053,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7017,7 +7070,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729707215, + "block_time": 1729776972, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7045,13 +7098,13 @@ "/v2/orders//matches": { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7065,7 +7118,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7085,13 +7138,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7105,7 +7158,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7132,15 +7185,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "btc_amount": 2000, - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "status": "valid", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "btc_amount_normalized": "0.00002000" } ], @@ -7151,9 +7204,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "block_index": 187, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7171,7 +7224,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729707181, + "block_time": 1729776949, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7197,9 +7250,9 @@ }, { "tx_index": 54, - "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "block_index": 188, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7217,7 +7270,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7243,9 +7296,9 @@ }, { "tx_index": 49, - "tx_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", + "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", "block_index": 184, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7263,7 +7316,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707105, + "block_time": 1729776882, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7289,9 +7342,9 @@ }, { "tx_index": 51, - "tx_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "block_index": 188, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7309,7 +7362,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707185, + "block_time": 1729776953, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7335,9 +7388,9 @@ }, { "tx_index": 57, - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", "block_index": 192, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7355,7 +7408,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707202, + "block_time": 1729776967, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7386,13 +7439,13 @@ "/v2/orders///matches": { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7409,7 +7462,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7429,13 +7482,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7452,7 +7505,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7472,13 +7525,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "tx0_index": 49, - "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 50, - "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7495,7 +7548,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729707105, + "block_time": 1729776882, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7521,13 +7574,13 @@ "/v2/order_matches": { "result": [ { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 54, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7541,7 +7594,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7561,13 +7614,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "tx0_index": 51, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 52, - "tx1_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7581,7 +7634,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729707181, + "block_time": 1729776949, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7601,13 +7654,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", + "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", "tx0_index": 49, - "tx0_hash": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx1_index": 50, - "tx1_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7621,7 +7674,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729707105, + "block_time": 1729776882, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7666,66 +7719,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", + "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", "block_index": 121, - "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", + "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729706888, + "block_time": 1729776691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "b5e1b542bdf4db3c7e478d833402954d2a9c29bdc166ad86f440d15aad0c7970", + "tx_hash": "5d2861df57ce5565c34227aa101b58099923458e765f9d07292021f503dcc7d8", "block_index": 120, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729706884, + "block_time": 1729776688, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "88c20ff6685e02b487e0d0b71875538ebef59c1c008b9a6b7fa5a2998f34df02", + "tx_hash": "5e1061c86662cb867de847c20c5c8e890fcae77f9d367d5073f7cc4ad63892cb", "block_index": 119, - "source": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu", + "source": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729706879, + "block_time": 1729776685, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "06c9b9066c478bc6ab3fa33a2f5977ed60c3315a75d4037ae3014a9ef4a22fe4", + "tx_hash": "32d9e83755a322ae35d20300f07ef6e652f44a13cd8311d6e23ea204f649cf74", "block_index": 118, - "source": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729706875, + "block_time": 1729776681, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "ee6b7b48ba8530c152f193e489e4f254a54a3e6d07d694bfee743b9c7d5b08a1", + "tx_hash": "a0293be2280885f5849d80ab9a4704169384df66188f638cd2a5153687d9d738", "block_index": 117, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729706871, + "block_time": 1729776677, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7737,9 +7790,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7748,7 +7801,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7758,7 +7811,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -7774,9 +7827,9 @@ }, { "tx_index": 29, - "tx_hash": "30f5bc87a2f81ed6c6ee55814507c92ef850fad98d3c9600bd99b0f5de4b589a", + "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", "block_index": 142, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7785,7 +7838,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7795,7 +7848,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706978, + "block_time": 1729776772, "asset_info": { "divisible": true, "asset_longname": null, @@ -7811,9 +7864,9 @@ }, { "tx_index": 30, - "tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", + "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", "block_index": 150, - "source": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", + "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7821,10 +7874,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "daf740bbb50c2c6066e5973acaaced5188ab32c8d33bdaeac81e138601d394af", - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7832,7 +7885,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729707022, + "block_time": 1729776814, "asset_info": { "divisible": true, "asset_longname": null, @@ -7846,20 +7899,57 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, + { + "tx_index": 62, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, { "tx_index": 33, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7869,7 +7959,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -7885,14 +7975,14 @@ } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 }, "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7901,7 +7991,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7911,7 +8001,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -7931,19 +8021,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7951,7 +8041,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7966,7 +8056,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -7980,19 +8070,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8000,7 +8090,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8015,7 +8105,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -8034,20 +8124,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -8068,20 +8158,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -8104,12 +8194,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "tx_index": 41, - "utxo": "d5e4d4a8bbe732733ea10815bc42554408191b88e0354de3817a8e560b0227a4:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "utxo": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "divisible": true, "asset_longname": null, @@ -8121,16 +8211,16 @@ }, { "block_index": 154, - "address": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "address": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "divisible": true, "asset_longname": null, @@ -8147,47 +8237,47 @@ "/v2/events": { "result": [ { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -8198,20 +8288,20 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -8221,24 +8311,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -8248,29 +8338,29 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 558, - "result_count": 564 + "next_cursor": 572, + "result_count": 578 }, "/v2/events/": { "result": { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 } }, "/v2/events/counts": { @@ -8281,7 +8371,7 @@ }, { "event": "TRANSACTION_PARSED", - "event_count": 50 + "event_count": 52 }, { "event": "SWEEP", @@ -8302,19 +8392,19 @@ "/v2/events/": { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -8324,24 +8414,24 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 557, + "event_index": 571, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -8351,127 +8441,127 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 554, + "event_index": 568, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 196, + "block_index": 198, "calling_function": "utxo move", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", - "utxo_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 }, { - "event_index": 540, + "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "asset": "XCP", - "block_index": 194, - "calling_function": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", - "quantity": 74499387833, - "tx_index": 60, + "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "block_index": 197, + "calling_function": "dispense", + "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "quantity": 4000, + "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729707220, + "block_time": 1729776988, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, - "quantity_normalized": "744.99388000" + "quantity_normalized": "0.00004000" }, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", - "block_index": 194, - "block_time": 1729707220 + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "block_time": 1729776988 }, { - "event_index": 538, + "event_index": 540, "event": "CREDIT", "params": { - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "asset": "MYASSETA", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "asset": "XCP", "block_index": 194, "calling_function": "sweep", - "event": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", - "quantity": 10, + "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "quantity": 74499387833, "tx_index": 60, "utxo": null, "utxo_address": null, - "block_time": 1729707220, + "block_time": 1729776976, "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "0.00000010" + "quantity_normalized": "744.99388000" }, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "block_time": 1729707220 + "block_time": 1729776976 } ], - "next_cursor": 536, - "result_count": 71 + "next_cursor": 538, + "result_count": 72 }, "/v2/events//count": { "result": { "event": "CREDIT", - "event_count": 71 + "event_count": 72 } }, "/v2/dispenses": { "result": [ { - "tx_index": 62, + "tx_index": 64, "dispense_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8486,7 +8576,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -8497,30 +8587,79 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729776988, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, { "tx_index": 34, "dispense_index": 0, - "tx_hash": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", + "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", "block_index": 147, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "destination": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 196, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "block_index": 198, + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "last_status_tx_hash": null, - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8535,7 +8674,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729707010, + "block_time": 1729776802, "asset_info": { "divisible": true, "asset_longname": null, @@ -8549,19 +8688,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "c0e466c20551d9bb00f8a20a7d098c3978c5d6430a2af0f04dbb0f3a03a7cc75", + "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8569,7 +8708,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8584,7 +8723,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706974, + "block_time": 1729776768, "asset_info": { "divisible": true, "asset_longname": null, @@ -8598,19 +8737,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "9fa708639789d9ef18cbae0be8c1caef11a31260d6bdaf0b140b7d2a665f97f3", + "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", "block_index": 140, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "421f5ac68cdf1d0ff1faa31fd13ed0d786832964063628dc1eaf95eeb38a8e6f", + "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8618,7 +8757,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8633,7 +8772,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729706969, + "block_time": 1729776764, "asset_info": { "divisible": true, "asset_longname": null, @@ -8646,16 +8785,16 @@ } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 }, "/v2/sends": { "result": [ { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8663,7 +8802,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -8675,11 +8814,11 @@ "fee_paid_normalized": "0.00000000" }, { - "tx_index": 62, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "tx_index": 64, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8687,11 +8826,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -8700,10 +8839,10 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "asset": "XCP", "quantity": 10, "status": "valid", @@ -8711,7 +8850,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -8724,10 +8863,10 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8735,11 +8874,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -8748,10 +8887,10 @@ }, { "tx_index": 56, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -8759,11 +8898,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -8778,14 +8917,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -8800,20 +8939,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "cb1c70577ea0dea8db82a7f356ac867f940f6e4c2a2b4d687c19b98419298388", + "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -8828,20 +8967,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729707086, + "block_time": 1729776855, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "5c71f8c2abea9db3211296174ec13d07cdb99e61aca1713834d7b64fa37af838", + "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -8856,20 +8995,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707072, + "block_time": 1729776850, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3fd1bfa80f5c4f67e37e2036625e62c5023086d03cb48425e0c30ab3e8617dce", + "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -8884,20 +9023,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707057, + "block_time": 1729776846, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 44, - "tx_hash": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", + "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", "msg_index": 0, "block_index": 157, "asset": "MYASSETB", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "issuer": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "transfer": false, "callable": false, "call_date": 0, @@ -8912,7 +9051,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707053, + "block_time": 1729776842, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -8923,14 +9062,14 @@ "/v2/issuances/": { "result": { "tx_index": 48, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "transfer": false, "callable": false, "call_date": 0, @@ -8945,7 +9084,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" } @@ -8954,16 +9093,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -8974,16 +9113,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" } ], @@ -8994,9 +9133,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "block_index": 138, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9004,14 +9143,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706961, + "block_time": 1729776757, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "e91257b19c4e40eb412db9dc87d09af4cb8d61c6d313cb90ca6ab4d0a7cc4a7e", + "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", "block_index": 137, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9019,7 +9158,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706957, + "block_time": 1729776753, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9029,9 +9168,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "block_index": 138, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9039,17 +9178,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729706961, + "block_time": 1729776757, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, "block_index": 155, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9074,7 +9213,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9083,10 +9222,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "tx_index": 22, "block_index": 135, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9111,7 +9250,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729706948, + "block_time": 1729776746, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9123,10 +9262,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "tx_index": 18, "block_index": 131, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9151,7 +9290,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729706931, + "block_time": 1729776731, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9163,10 +9302,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "tx_index": 14, "block_index": 130, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9191,7 +9330,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729706927, + "block_time": 1729776728, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9203,10 +9342,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "05efc00d6495d43dcd23f44388429e3814ddf01e3e27cc1e9ee05e8f067b9d7a", + "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", "tx_index": 10, "block_index": 125, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9231,7 +9370,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729706906, + "block_time": 1729776708, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9249,22 +9388,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9273,22 +9412,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fb4750d4b90d0f9db02d1a5cbd08137258da1b96b2622ae446a327acfd488d40", + "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706944, + "block_time": 1729776742, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9297,22 +9436,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "560aae0d0bc7bc320a660ecd524299e444752cfca0589f217eeeb22fabcf9891", + "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", "tx_index": 20, "block_index": 133, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706939, + "block_time": 1729776739, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9321,22 +9460,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "7345d59bbe6ac0b3ace4a46027e532d7ca1ad09dea8a0e38e1741527c85a65e5", + "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", "tx_index": 19, "block_index": 132, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "164e239aa87c6516546ac3d8321ff3045776c3bbde203ab2887b74d249b470d8", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706935, + "block_time": 1729776736, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9345,22 +9484,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "00ae9a87cf055baf3a423ca8542da114393af49566d7ba8813ea5a137e2212d6", + "tx_hash": "aa41ad4acc191c8b16344683e0338b538e38ea648745ef845646ebcf400d4bca", "tx_index": 17, "block_index": 129, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "fairminter_tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706923, + "block_time": 1729776725, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9374,22 +9513,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, "block_index": 136, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -9404,19 +9543,19 @@ "vout": 2, "height": 147, "value": 4949970000, - "confirmations": 50, + "confirmations": 52, "amount": 49.4997, - "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc", - "address": "bcrt1qfph7tg0gpeacfyaquryflzjr88f8kffxfv35xe" + "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", + "address": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3" }, { "vout": 2, "height": 157, "value": 100000, - "confirmations": 40, + "confirmations": 42, "amount": 0.001, - "txid": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4", - "address": "bcrt1qhdu5evl0uzfh68k20ajtzfjd4rvg3h43s4z9wu" + "txid": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", + "address": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp" } ], "next_cursor": null, @@ -9425,28 +9564,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603" + "tx_hash": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c" }, { - "tx_hash": "2e3539a7e624d565e115227f3e1ce0d2ceda8eadc192cd00942b0f68b13f940f" + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66" }, { - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f" + "tx_hash": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75" }, { - "tx_hash": "bfb8014e155cfc91d8eb68a793651bdfb666f642dc39239a9226a763feef0fb4" + "tx_hash": "ca05521ced0559ec4b81787af032ffb25086c7e630d4d3e547794846893fce7c" }, { - "tx_hash": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece" + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e" }, { - "tx_hash": "dbf445eb4b00e0f435ff1684067857c017d517553d31908e9842e5cd5f0037cf" + "tx_hash": "61bef57f9e80c8ad6b0038ec0e933dab81a6de83c79fad2e1c1cf5473edafd94" }, { - "tx_hash": "bb9cd46333fde108c8ec30df8abb1147d9304e981459a665968611cecc3f3edc" + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" }, { - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6" + "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec" } ], "next_cursor": null, @@ -9454,8 +9593,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 1, - "tx_hash": "e3d1bd6cdb590367b2c0d2f4afdc5dd5c683580218cb6894eef968342f75ab11" + "block_index": 10, + "tx_hash": "bfcc2c7b7a0e8828957a930dd6850e9f4afe7573b26fdb171ee48bd22549b892" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9464,22 +9603,22 @@ "vout": 2, "height": 147, "value": 4949970000, - "confirmations": 50, + "confirmations": 52, "amount": 49.4997, - "txid": "c31ca1512178dbd6fc9085c6cdc684d404195031623fef2722896b716b8b02cc" + "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "02090a44f15efd20ab3fba41f904bb26c9cb9cc8a9a753f747763993ded2938a9e" + "result": "036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101a4e98d52a5df1bc18cdc98d8c1c34afbe125497930eca2aee488b72932062ba60100000000ffffffff03e8030000000000001600144ea467f94eaca52acac0ee04c5fd37938a96af4800000000000000000c6a0af3adabb38504da911c6bdced08270100000016001400d5152e52ecda510f62bc224a3ca073dad7b6820247304402203a9020efcb55ee1b110b98332546a3b5030d807ff754b083876e46d87af6956902201029b9cac9fc9ccbd49cb49009b692b69f5127448381c1b1e2d19ef675e488f9012102ab7e7a2ba1f07d9f8dfdb4260655d143756a34a46c5af3ab6fd63809268352e100000000" + "result": "02000000000101ff1f7ca064400d77f1315a521d2608b64e2585c778c3004f7ffc6e97536f44f30100000000ffffffff03e803000000000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e00000000000000000c6a0a97c9d5cf40cfb0a1a6dddced0827010000001600141a3f8de361dc4f79c9d3a83cceb9183d5321bc8602473044022041255750faa71c2c4470da8b5d8302abdb16e5a00cfec2ec560f75028ce870ca022074d271780c426ca3e148abfc59c17dc376ae80d7905c71ad614f34760953510a012102fff7c08e2157e344ae7c532dc08d4aa1ff6702708e1ae487c8ad2cb8ec0f37d500000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 58603 + "result": 61563 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -9499,28 +9638,28 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63 + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65 }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "quantity": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, "asset_info": { "divisible": true, "asset_longname": null, @@ -9530,22 +9669,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -9555,22 +9694,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", - "block_index": 196, - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "block_index": 198, + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -9580,30 +9719,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729707238.1041224, + "block_time": 1729777005.7045548, "btc_amount": 0, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "destination": "", "fee": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, - "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, + "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -9617,7 +9756,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, @@ -9626,19 +9765,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -9648,7 +9787,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, @@ -9657,28 +9796,28 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63 + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65 }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "quantity": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, "asset_info": { "divisible": true, "asset_longname": null, @@ -9688,22 +9827,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "CREDIT", "params": { - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "send", - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -9713,22 +9852,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "asset": "XCP", - "block_index": 196, - "event": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "block_index": 198, + "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "quantity": 10000, - "tx_index": 63, + "tx_index": 65, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -9738,30 +9877,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 }, { - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729707238.1041224, + "block_time": 1729777005.7045548, "btc_amount": 0, - "data": "020000000000000001000000000000271080d4e34c77c78e01941387ee6542fa157700ba2ad1", + "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", "destination": "", "fee": 10000, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", - "tx_hash": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52", - "tx_index": 63, - "utxos_info": "f85827b9d91729a9efb493ca79fdd076e5db7c5d40b925b869885a507f69df52:1", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_index": 65, + "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "memo": null, "asset_info": { "divisible": true, @@ -9775,7 +9914,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729707238.1041224 + "timestamp": 1729777005.7045548 } ], "next_cursor": null, @@ -9794,40 +9933,40 @@ "/v2/events/NEW_BLOCK": { "result": [ { - "event_index": 550, + "event_index": 564, "event": "NEW_BLOCK", "params": { - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_index": 196, - "block_time": 1729707233, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_index": 198, + "block_time": 1729777001, "difficulty": 545259519, - "previous_block_hash": "39187a2c5ace828846ff58be5405260802e5567045b84267e32ffd9196508598" + "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28" }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 544, - "result_count": 96 + "next_cursor": 556, + "result_count": 98 }, "/v2/events/NEW_TRANSACTION": { "result": [ { - "event_index": 551, + "event_index": 565, "event": "NEW_TRANSACTION", "params": { - "block_hash": "7d6d29116bfb7655a967a7bd34bf0039da7470d8698deb4a34b780f1870f5a51", - "block_index": 196, - "block_time": 1729707233, + "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", + "block_index": 198, + "block_time": 1729777001, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "fee": 0, - "source": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "utxos_info": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1 6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9837,92 +9976,92 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 545, - "result_count": 63 + "next_cursor": 557, + "result_count": 65 }, "/v2/events/NEW_TRANSACTION_OUTPUT": { "result": [ { - "event_index": 552, + "event_index": 566, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "out_index": 0, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 277, - "result_count": 4 + "next_cursor": 558, + "result_count": 5 }, "/v2/events/BLOCK_PARSED": { "result": [ { - "event_index": 563, + "event_index": 577, "event": "BLOCK_PARSED", "params": { - "block_index": 196, - "ledger_hash": "8bf6bd55ec30dcd25734618267c8af577841ed46e3ae454ceee46ac3b122703b", - "messages_hash": "84dba9f60addb5f69c7c1a2970bd97e32a67a936162a4454035528e761937d1e", + "block_index": 198, + "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", + "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", "transaction_count": 1, - "txlist_hash": "fb8957e4110eeabe3103b0f523d486da1538f34183653297f4486d44690ac367", - "block_time": 1729707233 + "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", + "block_time": 1729777001 }, "tx_hash": null, - "block_index": 196, - "block_time": 1729707233 + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 549, - "result_count": 96 + "next_cursor": 563, + "result_count": 98 }, "/v2/events/TRANSACTION_PARSED": { "result": [ { - "event_index": 562, + "event_index": 576, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64 }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 548, - "result_count": 50 + "next_cursor": 562, + "result_count": 52 }, "/v2/events/DEBIT": { "result": [ { - "event_index": 556, + "event_index": 570, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 196, - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "block_index": 198, + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 1500000000, - "tx_index": 62, - "utxo": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", - "utxo_address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", - "block_time": 1729707233, + "tx_index": 64, + "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -9932,30 +10071,30 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 553, - "result_count": 56 + "next_cursor": 567, + "result_count": 57 }, "/v2/events/CREDIT": { "result": [ { - "event_index": 559, + "event_index": 573, "event": "CREDIT", "params": { - "address": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "asset": "XCP", - "block_index": 196, + "block_index": 198, "calling_function": "dispense", - "event": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", + "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", "quantity": 66, - "tx_index": 62, + "tx_index": 64, "utxo": null, "utxo_address": null, - "block_time": 1729707233, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -9965,13 +10104,13 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 557, - "result_count": 71 + "next_cursor": 571, + "result_count": 72 }, "/v2/events/ENHANCED_SEND": { "result": [ @@ -9981,14 +10120,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "memo": null, "quantity": 10000, - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "status": "valid", - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", "tx_index": 55, - "block_time": 1729707189, + "block_time": 1729776956, "asset_info": { "divisible": true, "asset_longname": null, @@ -9998,9 +10137,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "c6c4b62865a2bd87882d3218c3473b36eb961812f5f19fc3cd421087e0d49c2f", + "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", "block_index": 189, - "block_time": 1729707189 + "block_time": 1729776956 } ], "next_cursor": null, @@ -10014,15 +10153,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "tx_index": 56, - "block_time": 1729707194, + "block_time": 1729776961, "asset_info": { "divisible": true, "asset_longname": null, @@ -10032,9 +10171,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "6a94251c47ff7e92da7f05a20ce895152b2e0063e6d6b963ebe6519b161b0f27", + "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", "block_index": 190, - "block_time": 1729707194 + "block_time": 1729776961 } ], "next_cursor": 509, @@ -10057,20 +10196,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "status": "valid", - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "tx_index": 60, - "block_time": 1729707220, + "block_time": 1729776976, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5919c2f48bf39423b02f015623f15db7e09b01b04a3b937930fe61f3cfeafce6", + "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", "block_index": 194, - "block_time": 1729707220 + "block_time": 1729776976 } ], "next_cursor": null, @@ -10087,15 +10226,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "tx_index": 41, - "block_time": 1729707040, + "block_time": 1729776829, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10109,9 +10248,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "98f737daddaadddc5e5af644c6b0d3a7ede8af938d37e438df82d0d1254da22e", + "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", "block_index": 154, - "block_time": 1729707040 + "block_time": 1729776829 } ], "next_cursor": null, @@ -10132,11 +10271,11 @@ "asset_longname": "A95428959745315388.SUBNUMERIC", "asset_name": "A95428956980101314", "block_index": 161, - "block_time": 1729707090 + "block_time": 1729776858 }, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "block_index": 161, - "block_time": 1729707090 + "block_time": 1729776858 } ], "next_cursor": 381, @@ -10159,22 +10298,22 @@ "description_locked": false, "divisible": true, "fee_paid": 0, - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", "transfer": false, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "tx_index": 48, - "block_time": 1729707090, + "block_time": 1729776858, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6f355cff64db3a1d8a50a9621eaf9ade61d6fc44f75af318d19a1ee3bebb8a87", + "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", "block_index": 161, - "block_time": 1729707090 + "block_time": 1729776858 } ], "next_cursor": 388, @@ -10189,12 +10328,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q96t79c2kxefuswlk6u0x9fupxgj9kn2x5y3flr", + "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", "status": "valid", "tag": "64657374726f79", - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "tx_index": 61, - "block_time": 1729707224, + "block_time": 1729776979, "asset_info": { "divisible": true, "asset_longname": null, @@ -10204,9 +10343,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "efbe90d33bbca0bc2c5bb5ea08ad9bdab2c0ce294972031c053085cf138102e9", + "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", "block_index": 195, - "block_time": 1729707224 + "block_time": 1729776979 } ], "next_cursor": 157, @@ -10231,11 +10370,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "open", - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "tx_index": 59, - "block_time": 1729707215, + "block_time": 1729776972, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10259,9 +10398,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "9a1e227c5d7aa7439b834c88243239b62417d23016a9b4af51c8185f50d298eb", + "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", "block_index": 193, - "block_time": 1729707215 + "block_time": 1729776972 } ], "next_cursor": 516, @@ -10279,20 +10418,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3", + "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", "tx0_index": 51, - "tx1_address": "bcrt1q6n35ca783cqegyu8aej597s4wuqt52k3608n2r", + "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "tx1_index": 54, - "block_time": 1729707185, + "block_time": 1729776953, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10311,9 +10450,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ba1a64344575c4f99f510f838b11edcb86b5c68f609c1a58927346a49d62c603", + "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", "block_index": 188, - "block_time": 1729707185 + "block_time": 1729776953 } ], "next_cursor": 475, @@ -10326,11 +10465,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40" + "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b" }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_time": 1729707202 + "block_time": 1729776967 } ], "next_cursor": 490, @@ -10343,11 +10482,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d" + "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a" }, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "block_time": 1729707181 + "block_time": 1729776949 } ], "next_cursor": null, @@ -10359,13 +10498,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", + "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", "status": "completed" }, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "block_time": 1729707181 + "block_time": 1729776949 } ], "next_cursor": 454, @@ -10379,18 +10518,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "order_match_id": "b418ec0fc4c15ff0c10ef0f9ab6299a5eff833ca635010fab20abff3a2eb20b3_7f2ad3dabe64793fa9689e3c57141cab039300396803f27b3a553f06e366c72d", - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "status": "valid", - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "tx_index": 53, - "block_time": 1729707181, + "block_time": 1729776949, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0afe38328e0315dbfc23ff6a0966dc874889d7dfeae87aa80a787b2d8e17e18c", + "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", "block_index": 187, - "block_time": 1729707181 + "block_time": 1729776949 } ], "next_cursor": null, @@ -10403,16 +10542,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "9d32d4533d9051eb5524e49fced861b32bc08c27626b08971eae711678302c40", - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "tx_index": 58, - "block_time": 1729707202 + "block_time": 1729776967 }, - "tx_hash": "b3d7719dcf90392475d2d50780fcf7dce6c57cf586a8a829f539b98c59d68ca2", + "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", "block_index": 192, - "block_time": 1729707202 + "block_time": 1729776967 } ], "next_cursor": null, @@ -10425,13 +10564,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "block_time": 1729707105 + "order_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "block_time": 1729776882 }, "tx_hash": null, "block_index": 184, - "block_time": 1729707105 + "block_time": 1729776882 } ], "next_cursor": 460, @@ -10444,14 +10583,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "3aeb0f3b26c97de8607b8ce6a162db875f58d5d722c63128a3c6c80df8337538_2082548b5f1b07412b54ccee6fe1c694d8883b54afcd7519c88a7b5d6a30ce33", - "tx0_address": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "tx1_address": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", - "block_time": 1729707105 + "order_match_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "block_time": 1729776882 }, "tx_hash": null, "block_index": 184, - "block_time": 1729707105 + "block_time": 1729776882 } ], "next_cursor": null, @@ -10460,55 +10599,55 @@ "/v2/events/OPEN_DISPENSER": { "result": [ { - "event_index": 272, + "event_index": 553, "event": "OPEN_DISPENSER", "params": { - "asset": "XCP", - "block_index": 146, + "asset": "TESTLOCKDESC", + "block_index": 196, "dispense_count": 0, "escrow_quantity": 10000, "give_quantity": 1, "give_remaining": 10000, - "oracle_address": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "origin": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "oracle_address": null, + "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "satoshirate": 1, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "tx_index": 33, - "block_time": 1729707005, + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_index": 62, + "block_time": 1729776983, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "Test Locking Description", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "divisible": true, + "locked": false }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "block_index": 146, - "block_time": 1729707005 + "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "block_index": 196, + "block_time": 1729776983 } ], - "next_cursor": 254, - "result_count": 4 + "next_cursor": 272, + "result_count": 5 }, "/v2/events/DISPENSER_UPDATE": { "result": [ { - "event_index": 560, + "event_index": 574, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": 0, - "tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", + "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", "asset_info": { "divisible": true, "asset_longname": null, @@ -10518,13 +10657,13 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 302, - "result_count": 7 + "next_cursor": 560, + "result_count": 8 }, "/v2/events/REFILL_DISPENSER": { "result": [ @@ -10534,13 +10673,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "moAvS1gqqqbwg2E41f919Ao34AQ2TGcbnW", + "destination": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", "dispense_quantity": 10, - "dispenser_tx_hash": "01a6ff7fec7a2a8a4621443aad524f41446606afd60eead24decf4cab81cdabf", - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", - "tx_hash": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", + "dispenser_tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx_hash": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", "tx_index": 31, - "block_time": 1729706987, + "block_time": 1729776791, "asset_info": { "divisible": true, "asset_longname": null, @@ -10550,9 +10689,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "34541fdfa04b9f5e99121b5783b491e8558861ba907a10855bd100890f9d3eb6", + "tx_hash": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", "block_index": 144, - "block_time": 1729706987 + "block_time": 1729776791 } ], "next_cursor": null, @@ -10561,20 +10700,20 @@ "/v2/events/DISPENSE": { "result": [ { - "event_index": 561, + "event_index": 575, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 196, + "block_index": 198, "btc_amount": 1000, - "destination": "bcrt1qqr232tjjand9zrmzhs3y509qw0dd0d5zvslwqw", + "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "d7fbe3fbc5170834a444d09affa82322830ce2804db9982226313b5836f91a48", - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -10585,13 +10724,13 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 280, - "result_count": 4 + "next_cursor": 561, + "result_count": 5 }, "/v2/events/BROADCAST": { "result": [ @@ -10602,19 +10741,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qf6jx072w4jjj4jkqaczvtlfhjw9fdt6geu8zrf", + "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "tx_index": 25, "value": 66600.0, - "block_time": 1729706961, + "block_time": 1729776757, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "8d264e5e7d7dbda4c00e8718f363fddb75e4ddb9638bf99a8cdab97341d20d1b", + "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", "block_index": 138, - "block_time": 1729706961 + "block_time": 1729776757 } ], "next_cursor": 213, @@ -10645,12 +10784,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "start_block": 0, "status": "open", - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "tx_index": 42, - "block_time": 1729707044, + "block_time": 1729776834, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10658,9 +10797,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b1f02317c49c50af7904038a37c9d67cb4f6f44c468f39457220121fff92c87f", + "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", "block_index": 155, - "block_time": 1729707044 + "block_time": 1729776834 } ], "next_cursor": 196, @@ -10673,11 +10812,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "d1b23562afd14932d1a401c6439b0500f0aec4b8223907899dc6439b7677f244" + "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3" }, "tx_hash": null, "block_index": 130, - "block_time": 1729706927 + "block_time": 1729776728 } ], "next_cursor": 110, @@ -10693,17 +10832,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f075b76767b1e4ee2020916c05dc2e64a4d080208552567c7ba9923e5581ede9", + "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", "paid_quantity": 34, - "source": "bcrt1q34q4a7eay45z7vkvqnh656cmqfpe2vf4555dc0", + "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", "status": "valid", - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "tx_index": 23, - "block_time": 1729706952, + "block_time": 1729776750, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, @@ -10711,9 +10850,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ab4fab8f4a93da61c0766a8d8a2dd813c7314642e70a5d869078825d6699db56", + "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", "block_index": 136, - "block_time": 1729706952 + "block_time": 1729776750 } ], "next_cursor": 190, @@ -10727,28 +10866,28 @@ "params": { "asset": "MYASSETA", "block_index": 152, - "destination": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63:1", + "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "status": "valid", - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "tx_index": 39, - "block_time": 1729707031, + "block_time": 1729776822, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8a071fafa6b07aae2cf7a338d1e7f0ae9ff6324a14ebf0e7a1d345d31f099e63", + "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", "block_index": 152, - "block_time": 1729707031 + "block_time": 1729776822 } ], "next_cursor": 296, @@ -10762,28 +10901,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qdafn5k5kc4vfdxmymlh20z08x0k9dc5lyn3plr", + "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "565597990bf254f652f48f92e357c25cad1d9b72fa1a5c29759896abb7d93ece:0", + "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", "status": "valid", - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "tx_index": 38, - "block_time": 1729707027, + "block_time": 1729776818, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q259klap9ltdv9mlxd5ypw3ygwmx4usrhxavrxt", + "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c8862df1f5009f9c77b06451df2e353e818f78fcbbe312832162f6ea7ac28258", + "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", "block_index": 151, - "block_time": 1729707027 + "block_time": 1729776818 } ], "next_cursor": null, @@ -10792,19 +10931,19 @@ "/v2/events/UTXO_MOVE": { "result": [ { - "event_index": 558, + "event_index": 572, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 196, - "destination": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551:0", + "block_index": 198, + "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", "msg_index": 1, "quantity": 1500000000, - "source": "a62b063229b788e4aea2ec30794925e1fb4ac3c1d898dc8cc11bdfa5528de9a4:1", + "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", "status": "valid", - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "tx_index": 62, - "block_time": 1729707233, + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "tx_index": 64, + "block_time": 1729777001, "asset_info": { "divisible": true, "asset_longname": null, @@ -10814,12 +10953,12 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "6d2746080b4c136d4c7337ed80ed79fa55dc01ac60273e44d3e6f4540dc51551", - "block_index": 196, - "block_time": 1729707233 + "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 198, + "block_time": 1729777001 } ], - "next_cursor": 555, + "next_cursor": 569, "result_count": 9 }, "/v2/events/BURN": { @@ -10831,17 +10970,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qtxsvsnrp7jvfsyjjgh5vrqs0734mjd4wk9fhy3", + "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", "status": "valid", - "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", + "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", "tx_index": 9, - "block_time": 1729706888, + "block_time": 1729776691, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "d9e7cf2fd65bdb7e15f1b71a9163ee37f6ee41c6c8e051ae3cd261f04dee131f", + "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", "block_index": 121, - "block_time": 1729706888 + "block_time": 1729776691 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 683269e62f..756dc254f8 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -290,6 +290,7 @@ def start(self): _bg=True, _out=self.server_out, _err_to_out=True, + _bg_exc=False, ) self.wait_for_counterparty_follower() @@ -380,6 +381,7 @@ def check_node_state(self, command, previous_state): _bg=True, _out=self.server_out, _err_to_out=True, + _bg_exc=False, ) self.wait_for_counterparty_follower() self.wait_for_counterparty_watcher() @@ -399,6 +401,7 @@ def test_command(self, command): 150, # avoid tx using `disable_protocol_changes` params (scenario_6_dispenser.py) _out=sys.stdout, _err_to_out=True, + _bg_exc=False, ) self.check_node_state(command, state_before) print(f"`{command}` successful") diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py new file mode 100644 index 0000000000..b941dc614b --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_17_dispenser.py @@ -0,0 +1,165 @@ +SCENARIO = [ + { + "title": "Create Dispenser 6", + "transaction": "dispenser", + "source": "$ADDRESS_1", + "params": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, # 1 BTC for 1 XCP + "status": 0, + }, + "set_variables": { + "DISPENSER_6_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=OPEN_DISPENSER,DEBIT", + "result": [ + { + "event": "OPEN_DISPENSER", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset": "TESTLOCKDESC", + "block_index": "$BLOCK_INDEX", + "dispense_count": 0, + "escrow_quantity": 10000, + "give_quantity": 1, + "give_remaining": 10000, + "oracle_address": None, + "origin": "$ADDRESS_1", + "satoshirate": 1, + "source": "$ADDRESS_1", + "status": 0, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "action": "open dispenser", + "address": "$ADDRESS_1", + "asset": "TESTLOCKDESC", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 10000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + }, + { + "url": "addresses/$ADDRESS_1/dispensers", + "result": [ + { + "asset": "TESTLOCKDESC", + "block_index": "$BLOCK_INDEX", + "close_block_index": None, + "confirmed": True, + "dispense_count": 0, + "escrow_quantity": 10000, + "give_quantity": 1, + "give_remaining": 10000, + "last_status_tx_hash": None, + "last_status_tx_source": None, + "oracle_address": None, + "origin": "$ADDRESS_1", + "satoshirate": 1, + "source": "$ADDRESS_1", + "status": 0, + "tx_hash": "$TX_HASH", + "tx_index": 62, + }, + { + "asset": "XCP", + "block_index": "$DISPENSER_1_LAST_UPDATE_BLOCK_INDEX", + "close_block_index": None, + "confirmed": True, + "dispense_count": 2, + "escrow_quantity": 10000, + "give_quantity": 1, + "give_remaining": 0, + "last_status_tx_hash": None, + "last_status_tx_source": None, + "oracle_address": None, + "origin": "$ADDRESS_1", + "satoshirate": 1, + "source": "$ADDRESS_1", + "status": 10, + "tx_hash": "$DISPENSER_1_TX_HASH", + "tx_index": "$DISPENSER_1_TX_INDEX", + }, + ], + }, + ], + }, + { + "title": "Dispense on address with two dispensers, one of them is closed", + "transaction": "dispense", + "source": "$ADDRESS_2", + "params": { + "dispenser": "$ADDRESS_1", + "quantity": 4000, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=DISPENSE,DISPENSER_UPDATE,CREDIT", + "result": [ + { + "event": "DISPENSE", + "event_index": "$EVENT_INDEX_6", + "params": { + "asset": "TESTLOCKDESC", + "block_index": "$BLOCK_INDEX", + "btc_amount": 4000, + "destination": "$ADDRESS_2", + "dispense_index": 0, + "dispense_quantity": 4000, + "dispenser_tx_hash": "$DISPENSER_6_TX_HASH", + "source": "$ADDRESS_1", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DISPENSER_UPDATE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "TESTLOCKDESC", + "dispense_count": 1, + "give_remaining": 6000, + "source": "$ADDRESS_1", + "status": 0, + "tx_hash": "$DISPENSER_6_TX_HASH", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_2", + "asset": "TESTLOCKDESC", + "block_index": "$BLOCK_INDEX", + "calling_function": "dispense", + "event": "$TX_HASH", + "quantity": 4000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, +] diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py index af6a350b0d..b7840214ed 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_5_dispenser.py @@ -12,6 +12,8 @@ }, "set_variables": { "DISPENSER_1_TX_HASH": "$TX_HASH", + "DISPENSER_1_TX_INDEX": "$TX_INDEX", + "DISPENSER_1_BLOCK_INDEX": "$BLOCK_INDEX", }, "controls": [ { @@ -158,7 +160,7 @@ "dispenser": "$ADDRESS_1", "quantity": 4001, }, - "expected_error": ["dispenser doesn't have enough asset to give"], + "expected_error": ["dispenser for XCP doesn't have enough asset to give"], }, { "title": "Dispense 3: no dispenser error", @@ -178,6 +180,9 @@ "dispenser": "$ADDRESS_1", "quantity": 4000, }, + "set_variables": { + "DISPENSER_1_LAST_UPDATE_BLOCK_INDEX": "$BLOCK_INDEX", + }, "controls": [ { "url": "blocks/$BLOCK_INDEX/events?event_name=NEW_TRANSACTION,NEW_TRANSACTION_OUTPUT,CREDIT,DISPENSER_UPDATE,DISPENSE", @@ -271,7 +276,7 @@ "dispenser": "$ADDRESS_1", "quantity": 4001, }, - "expected_error": ["dispenser is not open", "dispenser is empty"], + "expected_error": ["dispenser for XCP is not open", "dispenser for XCP is empty"], }, { "title": "Create Dispenser 2: dispenser must be created by source", diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index f2a442f66c..d7eccf8834 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -26,6 +26,7 @@ scenario_14_sweep, scenario_15_destroy, scenario_16_fairminter, + scenario_17_dispenser, scenario_last_mempool, ) from termcolor import colored @@ -47,6 +48,7 @@ SCENARIOS += scenario_13_cancel.SCENARIO SCENARIOS += scenario_14_sweep.SCENARIO SCENARIOS += scenario_15_destroy.SCENARIO +SCENARIOS += scenario_17_dispenser.SCENARIO # more scenarios before this one SCENARIOS += scenario_last_mempool.SCENARIO @@ -152,14 +154,14 @@ def control_result(item, node, context, block_hash, block_time, tx_hash, data, r try: assert result["result"] == expected_result print(f"{item['title']}: " + colored("Success", "green")) - except AssertionError as e: + except AssertionError: print(colored(f"Failed: {item['title']}", "red")) expected_result_str = json.dumps(expected_result, indent=4, sort_keys=True) got_result_str = json.dumps(result["result"], indent=4, sort_keys=True) print(f"Expected: {expected_result_str}") print(f"Got: {got_result_str}") compare_strings(expected_result_str, got_result_str) - raise e + # raise e def run_item(node, item, context): From 2bde51b536ac23cf7f218aa873d660761098420f Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 14:24:18 +0000 Subject: [PATCH 57/71] update release notes --- .../{release-notes-v10.5.1.md => release-notes-v10.6.0.md} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) rename release-notes/{release-notes-v10.5.1.md => release-notes-v10.6.0.md} (88%) diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.6.0.md similarity index 88% rename from release-notes/release-notes-v10.5.1.md rename to release-notes/release-notes-v10.6.0.md index 5af5b6bf3c..6bc6de82a1 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.6.0.md @@ -1,4 +1,4 @@ -# Release Notes - Counterparty Core v10.5.1 (2024-10-??) +# Release Notes - Counterparty Core v10.6.0 (2024-10-??) TODO @@ -12,6 +12,10 @@ Backwards-incompatible change # ChangeLog +## Protocol Changes + +- Dispense is triggered if at least one dispenser on an address is valid, not only if all are valid + ## Bugfixes - Correctly catch invalid pubkey in compose API From d4fded7a28d34d98faf1a09b0b49e6b3a3f8cf98 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 14:27:44 +0000 Subject: [PATCH 58/71] around one week from now --- counterparty-core/counterpartycore/protocol_changes.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 1506060dde..31037e660d 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -639,10 +639,10 @@ } }, "accept_only_one_valid_dispenser": { - "minimum_version_major": 11, - "minimum_version_minor": 1, + "minimum_version_major": 10, + "minimum_version_minor": 6, "minimum_version_revision": 0, - "block_index": 966000, - "testnet_block_index": 2925800 + "block_index": 868200, + "testnet_block_index": 3195137 } } From e4d8cf147119a37a7340387598eb20c45a20fd4a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 14:58:49 +0000 Subject: [PATCH 59/71] update release notes --- release-notes/release-notes-v10.5.1.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.5.1.md b/release-notes/release-notes-v10.5.1.md index 5af5b6bf3c..abb241e6a4 100644 --- a/release-notes/release-notes-v10.5.1.md +++ b/release-notes/release-notes-v10.5.1.md @@ -21,6 +21,7 @@ Backwards-incompatible change ## Codebase +- Use lock file to ensure only one running RSFetcher ## API From 11a32b7b7dfc1965f8327d57bcd795aa4b291433 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Thu, 24 Oct 2024 15:24:09 +0000 Subject: [PATCH 60/71] update release notes --- release-notes/release-notes-v10.6.0.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release-notes/release-notes-v10.6.0.md b/release-notes/release-notes-v10.6.0.md index 57dc033545..6ff1d5356d 100644 --- a/release-notes/release-notes-v10.6.0.md +++ b/release-notes/release-notes-v10.6.0.md @@ -1,4 +1,4 @@ -# Release Notes - Counterparty Core v10.6.0 (2024-10-??) +# Release Notes - Counterparty Core v10.6.0 (2024-10-24) TODO @@ -14,7 +14,7 @@ Backwards-incompatible change ## Protocol Changes -- Dispense is triggered if at least one dispenser on an address is valid, not only if all are valid +- From block 868200 Dispense is triggered if at least one dispenser on an address is valid, not only if all are valid ## Bugfixes From ef82d8a427d0877e724d2332af777641a54a5348 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Thu, 24 Oct 2024 11:45:47 -0400 Subject: [PATCH 61/71] Release Notes for v10.6.0 --- release-notes/release-notes-v10.6.0.md | 30 ++++++++++++++------------ 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/release-notes/release-notes-v10.6.0.md b/release-notes/release-notes-v10.6.0.md index 6ff1d5356d..22470de71f 100644 --- a/release-notes/release-notes-v10.6.0.md +++ b/release-notes/release-notes-v10.6.0.md @@ -1,48 +1,50 @@ # Release Notes - Counterparty Core v10.6.0 (2024-10-24) -TODO +This release includes a protocol change to fix a regression for the case when there have been multiple dispensers opened at a single address. The bug prevents users from triggering dispensers at addresses where there have previously been closed dispensers (rather than simply re-opened dispensers). + # Upgrading -TODO +This release is a protocol change from mainnet block 868,200 (in about one week). It also includes a backwards-incompatible change in the API: + +- `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
`. -Backwards-incompatible change -- `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` +*IMPORTANT* All wallets should use the `compose_dispense()` call to trigger dispenses rather than the legacy `create_send()`. Due to the above bug, using `create_send()` can make it possible for users to send BTC to an address where the dispenser will fail. All node hosts should migrate to `compose_dispense()` ASAP. # ChangeLog ## Protocol Changes -- From block 868200 Dispense is triggered if at least one dispenser on an address is valid, not only if all are valid +- Block 868200: Dispenses are now triggered if *at least* one dispenser on the address is valid rather than only if all of them are valid. ## Bugfixes -- Correctly catch invalid pubkey in compose API -- Don't run reparse if unnecessary +- Catch invalid pubkeys in the compose API correctly +- Run reparse only if necessary - Fix `message_data` when retrieving information about fairminter or fairmint transactions -- Use `threading.Event()` to cleanly stop Threads and subprocesses started by `counterparty-server` +- Use `threading.Event()` to cleanly stop threads and subprocesses started by `counterparty-server` ## Codebase -- Use lock file to ensure only one running RSFetcher +- Use a lock file for RS Fetcher thread ## API -- `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` +- Have `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
` - Add the following routes: * `/v2/blocks//fairminters` * `/v2/blocks//fairmints` * `/v2/compose/attach/estimatexcpfees` - Add `status` argument for Fairminters routes -- Made `/blocks/last` faster by adding an index to the `ledger_hash` field -- `/v2/addresses/
/sweeps` now also searches by the `destination` field +- Make `/blocks/last` faster by adding an index to the `ledger_hash` field +- Have `/v2/addresses/
/sweeps` now also search by the `destination` field - Add `asset_events` argument for Issuances routes -- Raise an error on fairmint compose when the fairminter is free and the quantity is not zero +- Raise an error on `fairmint.compose()` when the fairminter is free and the quantity is not zero ## CLI -- `start` command supports now `--bootstrap-url` +- Add support for `--bootstrap-url` to `start` command # Credits From 198bd74dc3d1a1a43b2ae04e7a9d214910acbfe2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 09:36:13 +0000 Subject: [PATCH 62/71] Add regtest scenario for chained utxo move --- .../counterpartycore/lib/api/compose.py | 27 +- .../test/regtest/apidoc/apicache.json | 10989 ---------------- .../test/regtest/regtestnode.py | 7 +- .../regtest/scenarios/scenario_18_utxo.py | 345 + .../test/regtest/testscenarios.py | 7 +- 5 files changed, 376 insertions(+), 10999 deletions(-) delete mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json create mode 100644 counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 3cd2bd71f2..ad59547d12 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -675,7 +675,14 @@ def compose_detach( ) -def compose_movetoutxo(db, utxo: str, destination: str, more_utxos: str = ""): +def compose_movetoutxo( + db, + utxo: str, + destination: str, + more_utxos: str = "", + exact_fee: int = None, + change_address: str = None, +): """ Composes a transaction to move assets from UTXO to another UTXO. :param utxo: The utxo from which the assets are moved @@ -710,10 +717,13 @@ def compose_movetoutxo(db, utxo: str, destination: str, more_utxos: str = ""): tx_hash, vout = utxo.split(":") - fee_per_kb = backend.bitcoind.fee_per_kb() - # Transaction Size (in bytes) = (Number of Inputs x 148) + (Number of Outputs x 34) + 10 - tx_size = (input_count * 148) + (2 * 34) + 10 - fee = (D(fee_per_kb) / config.UNIT) * (D(tx_size) / 1024) + if exact_fee is not None: + fee = D(exact_fee) / config.UNIT if exact_fee else 0 + else: + fee_per_kb = backend.bitcoind.fee_per_kb() + # Transaction Size (in bytes) = (Number of Inputs x 148) + (Number of Outputs x 34) + 10 + tx_size = (input_count * 148) + (2 * 34) + 10 + fee = (D(fee_per_kb) / config.UNIT) * (D(tx_size) / 1024) dust = D("0.0000546") change = D(total_value) - dust - fee @@ -722,7 +732,12 @@ def compose_movetoutxo(db, utxo: str, destination: str, more_utxos: str = ""): raise exceptions.ComposeError("Insufficient funds for fee") inputs = [{"txid": tx_hash, "vout": int(vout)}] + more_utxos_list - outputs = [{destination: str(dust)}, {source_address: str(change)}] + outputs = [{destination: str(dust)}] + if change > 0: + change_output_address = change_address or source_address + outputs += [{change_output_address: str(change)}] + print("inputs", inputs) + print("outputs", outputs) rawtransaction = backend.bitcoind.createrawtransaction(inputs, outputs) return { diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json deleted file mode 100644 index 48ab110fe3..0000000000 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ /dev/null @@ -1,10989 +0,0 @@ -{ - "/v2/blocks": { - "result": [ - { - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "difficulty": 545259519, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 197, - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "block_time": 1729776988, - "previous_block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "difficulty": 545259519, - "ledger_hash": "b30038c228d73eb9c88b2ca971193a018ac3f68720c4647c7ec06c1b21bc5fb2", - "txlist_hash": "c64a47bfdcd98bd1e2ed69b137766afce61271dddfb151c1e3a085ec60b8bee9", - "messages_hash": "72b887cd33f43580d02780aaca8cf764552b57dc6f5a790d9bf8a82231a0d079", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 196, - "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "block_time": 1729776983, - "previous_block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", - "difficulty": 545259519, - "ledger_hash": "5088f90944f94cc039d253ccde60a0635dbca10e17275565cac4203ffb80c832", - "txlist_hash": "4b1dae0241f6d3bb217bbc48ac5bbfa06197c51e91fbf3568bed4c5b132c3f9f", - "messages_hash": "ee79ed17425c3e62d5abeff1fc65a45e788ef9b26e71d686a43fb5d26c29430c", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 195, - "block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", - "block_time": 1729776979, - "previous_block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", - "difficulty": 545259519, - "ledger_hash": "b84b12aeeeceb76cfc87253fa6e675cb2e4cb3880d87941025f1f6702356178b", - "txlist_hash": "105256948da2848a4ed5f437f3142522bb1a7899af3ddba45f878b50ac0c35cb", - "messages_hash": "8a8395bdb32d083d6ce0216be6106ff9c429bd081fd8df140f820bf0a0f2d118", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 194, - "block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", - "block_time": 1729776976, - "previous_block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", - "difficulty": 545259519, - "ledger_hash": "b1d37c355f54287466651bfe7ef0a7ba89167cd55d20297ddd388f76295039d6", - "txlist_hash": "441d3c14334c4d1775e40efc63e1c91bfa5e90d5a79003fad5ab48b90b8b40b4", - "messages_hash": "f8d24ea6ba8929cdb4aabcf9d01ecd8659b2af3d4865fde51770dd277b2f3c43", - "transaction_count": 1, - "confirmed": true - } - ], - "next_cursor": 193, - "result_count": 98 - }, - "/v2/blocks/": { - "result": { - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "difficulty": 545259519, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks/": { - "result": { - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "difficulty": 545259519, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks//transactions": { - "result": [ - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//events": { - "result": [ - { - "event_index": 577, - "event": "BLOCK_PARSED", - "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", - "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 - }, - "tx_hash": null - }, - { - "event_index": 576, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" - }, - { - "event_index": 575, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 198, - "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" - }, - { - "event_index": 574, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" - }, - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" - } - ], - "next_cursor": 572, - "result_count": 14 - }, - "/v2/blocks//events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 2 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION_OUTPUT", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION", - "event_count": 1 - }, - { - "event": "NEW_BLOCK", - "event_count": 1 - } - ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 - }, - "/v2/blocks//events/": { - "result": [ - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" - }, - { - "event_index": 571, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" - }, - { - "event_index": 568, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//credits": { - "result": [ - { - "block_index": 198, - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "quantity": 66, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - { - "block_index": 198, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 198, - "address": null, - "asset": "MYASSETA", - "quantity": 1500000000, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//debits": { - "result": [ - { - "block_index": 198, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "action": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 198, - "address": null, - "asset": "MYASSETA", - "quantity": 1500000000, - "action": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//expirations": { - "result": [ - { - "type": "order", - "object_id": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "block_index": 184, - "confirmed": true, - "block_time": 1729776882 - }, - { - "type": "order", - "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "block_index": 184, - "confirmed": true, - "block_time": 1729776882 - }, - { - "type": "order_match", - "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "block_index": 184, - "confirmed": true, - "block_time": 1729776882 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//cancels": { - "result": [ - { - "tx_index": 58, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", - "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "status": "valid", - "confirmed": true, - "block_time": 1729776967 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//destructions": { - "result": [ - { - "tx_index": 61, - "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", - "block_index": 195, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", - "status": "valid", - "confirmed": true, - "block_time": 1729776979, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//issuances": { - "result": [ - { - "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776858, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sends": { - "result": [ - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "asset": "MYASSETA", - "quantity": 1500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//dispenses": { - "result": [ - { - "tx_index": 64, - "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sweeps": { - "result": [ - { - "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729776976, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairminters": { - "result": [ - { - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1729776834, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairmints": { - "result": [ - { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776750, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions": { - "result": [ - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 63, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "block_time": 1729776988, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" - } - ], - "next_cursor": 62, - "result_count": 65 - }, - "/v2/transactions/info": { - "result": { - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "39a8913e53502a7b640846053d3cfdca850c4731b184a193c1e19e0ac5560fcb", - "n": 2, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 4000, - "script_pub_key": "001451269fef373ad8fe2dd8fce8dca208f10459c33c" - }, - { - "value": 0, - "script_pub_key": "6a0aeefdf3da506923f1fd5a" - }, - { - "value": 4949854000, - "script_pub_key": "00142f61f4a6229425911b5b60caf31a874f19d8cf42" - } - ], - "vtxinwit": [ - "3044022065046a8e95bbd752a20cf3db6bb6e73a37790b6e2a149470b548c46bccd4f9ee022067a5ee8c077564eefe4f14d0191dc4326ef308c45a13db3360093f2b91a145b001", - "0387b9df27b98064e93726b8588f79ad86a732606b4e887ff96a0396c15a0ad3d1" - ], - "lock_time": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "tx_id": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2" - }, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" - } - }, - "/v2/transactions//info": { - "result": { - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "3adfd2398ce4a22b04fefceb71d3eb2ee66a28233ba39cecd0cba0f4af10ae9e", - "n": 1, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 0, - "script_pub_key": "6a2e1b26b4580ff075639ff5ef44e98b020309d1f03fe4660d7611b5159df82098d2abb6906e7a8875783a5ce8494dea" - }, - { - "value": 4999955000, - "script_pub_key": "00144e27f9201757a2b45bc47377f51e88f2fc7bdd07" - } - ], - "vtxinwit": [ - "304402204c730b1849ca9bd584cbf2859a39b6ed49c235a8fae8369e8465b99d46b4681102200e23e042a59214ac85e413b194974a564fe94a5323652eaecae6d47ab9184c4f01", - "02b919f494dfd97e0831b0b73371c81b6b5b4876f7c1881d6f21a32f22e44ec129" - ], - "lock_time": 0, - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_id": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d" - }, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions/unpack": { - "result": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "error": "memo too long" - } - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 576, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 575, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 198, - "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 574, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 572, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 198, - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "msg_index": 1, - "quantity": 1500000000, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "status": "valid", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 571, - "result_count": 12 - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 576, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 575, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 198, - "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 574, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 572, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 198, - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "msg_index": 1, - "quantity": 1500000000, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "status": "valid", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 571, - "result_count": 12 - }, - "/v2/transactions//sends": { - "result": [ - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "asset": "MYASSETA", - "quantity": 1500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/transactions//dispenses": { - "result": [ - { - "tx_index": 64, - "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 571, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 568, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 571, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 568, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/balances": { - "result": [ - { - "asset": "A95428956980101314", - "total": 100000000000, - "addresses": [ - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "utxo": null, - "utxo_address": null, - "quantity": 100000000000, - "quantity_normalized": "1000.00000000" - } - ], - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "total_normalized": "1000.00000000" - }, - { - "asset": "MYASSETA", - "total": 97999999980, - "addresses": [ - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "utxo": null, - "utxo_address": null, - "quantity": 97999999980, - "quantity_normalized": "980.00000000" - } - ], - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "total_normalized": "980.00000000" - }, - { - "asset": "FAIRMINTA", - "total": 500000000, - "addresses": [ - { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "utxo": null, - "utxo_address": null, - "quantity": 500000000, - "quantity_normalized": "5.00000000" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "total_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTD", - "total": 40, - "addresses": [ - { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "utxo": null, - "utxo_address": null, - "quantity": 40, - "quantity_normalized": "0.00000040" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "total": 19, - "addresses": [ - { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "utxo": null, - "utxo_address": null, - "quantity": 19, - "quantity_normalized": "0.00000019" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000019" - } - ], - "next_cursor": "TESTLOCKDESC", - "result_count": 7 - }, - "/v2/addresses/transactions": { - "result": [ - { - "tx_index": 63, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "block_time": 1729776988, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "block_index": 196, - "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "block_time": 1729776983, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "supported": true, - "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "block_index": 193, - "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", - "block_time": 1729776972, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 58, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", - "block_index": 192, - "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", - "block_time": 1729776967, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "supported": true, - "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", - "confirmed": true, - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "status": "valid" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "block_index": 191, - "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", - "block_time": 1729776964, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 56, - "result_count": 39 - }, - "/v2/addresses/events": { - "result": [ - { - "event_index": 561, - "event": "DISPENSE", - "params": { - "asset": "TESTLOCKDESC", - "block_index": 197, - "btc_amount": 4000, - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "dispense_index": 0, - "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "tx_index": 63, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_time": 1729776988 - }, - { - "event_index": 560, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "TESTLOCKDESC", - "dispense_count": 1, - "give_remaining": 6000, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": 0, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "give_remaining_normalized": "0.00006000" - }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_time": 1729776988 - }, - { - "event_index": 559, - "event": "CREDIT", - "params": { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "TESTLOCKDESC", - "block_index": 197, - "calling_function": "dispense", - "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "quantity": 4000, - "tx_index": 63, - "utxo": null, - "utxo_address": null, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00004000" - }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_time": 1729776988 - }, - { - "event_index": 557, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "block_index": 197, - "block_time": 1729776988, - "btc_amount": 4000, - "data": "0d00", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "fee": 0, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "tx_index": 63, - "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" - }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_time": 1729776988 - } - ], - "next_cursor": 557, - "result_count": 189 - }, - "/v2/addresses/mempool": { - "result": [ - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "memo": null, - "quantity": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "status": "valid", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "CREDIT", - "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "XCP", - "block_index": 198, - "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "quantity": 10000, - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "block_index": 198, - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "quantity": 10000, - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1729777005.7045548, - "btc_amount": 0, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", - "destination": "", - "fee": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1729777005.7045548 - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/balances": { - "result": [ - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "A95428956980101314", - "quantity": 100000000000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "MYASSETA", - "quantity": 97999999980, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "980.00000000" - }, - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - }, - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "TESTLOCKDESC", - "quantity": 9999990000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "99.99990000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/balances/": { - "result": [ - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/credits": { - "result": [ - { - "block_index": 192, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "tx_index": 58, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776967, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 184, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776882, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 161, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "A95428956980101314", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "tx_index": 48, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776858, - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "block_index": 158, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "calling_function": "issuance", - "event": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", - "tx_index": 45, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776846, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "100.00000000" - }, - { - "block_index": 152, - "address": null, - "asset": "MYASSETA", - "quantity": 1000000000, - "calling_function": "attach to utxo", - "event": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", - "tx_index": 39, - "utxo": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", - "utxo_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "confirmed": true, - "block_time": 1729776822, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000" - } - ], - "next_cursor": 44, - "result_count": 15 - }, - "/v2/addresses/
/debits": { - "result": [ - { - "block_index": 196, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "TESTLOCKDESC", - "quantity": 10000, - "action": "open dispenser", - "event": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "tx_index": 62, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776983, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00010000" - }, - { - "block_index": 193, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "tx_index": 59, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776972, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 191, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "tx_index": 57, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776964, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 190, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "tx_index": 56, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 190, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "MYASSETA", - "quantity": 20, - "action": "mpma send", - "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "tx_index": 56, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - } - ], - "next_cursor": 44, - "result_count": 21 - }, - "/v2/addresses/
/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/broadcasts": { - "result": [ - { - "tx_index": 24, - "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", - "block_index": 137, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729776753, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/burns": { - "result": [ - { - "tx_index": 0, - "tx_hash": "d3eb98025f98da1c60732f1b5f9b963134fa8c3558c428b6ec2e288f5d3be7dd", - "block_index": 112, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "burned": 50000000, - "earned": 74999998167, - "status": "valid", - "confirmed": true, - "block_time": 1729776660, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99998000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends": { - "result": [ - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 39, - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", - "block_index": 152, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776822, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 36, - "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", - "block_index": 149, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776810, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/receives": { - "result": [ - { - "tx_index": 38, - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", - "block_index": 151, - "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", - "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", - "asset": "MYASSETA", - "quantity": 500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776818, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends/": { - "result": [ - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 39, - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", - "block_index": 152, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776822, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 36, - "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", - "block_index": 149, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776810, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/receives/": { - "result": [ - { - "tx_index": 38, - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", - "block_index": 151, - "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", - "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", - "asset": "MYASSETA", - "quantity": 500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776818, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/addresses/
/dispenses/sends": { - "result": [ - { - "tx_index": 63, - "dispense_index": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", - "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776764, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/receives": { - "result": [ - { - "tx_index": 63, - "dispense_index": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", - "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776764, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/sends/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", - "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776764, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispenses/receives/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", - "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776764, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/sweeps": { - "result": [ - { - "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729776976, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/issuances": { - "result": [ - { - "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776858, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 47, - "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", - "msg_index": 0, - "block_index": 160, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1729776855, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 46, - "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", - "msg_index": 0, - "block_index": 159, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776850, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 45, - "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", - "msg_index": 0, - "block_index": 158, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776846, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 42, - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", - "msg_index": 0, - "block_index": 155, - "asset": "A95428958968845068", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "MYASSETA.SUBMYASSETA", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1729776834, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 16, - "result_count": 21 - }, - "/v2/addresses/
/assets": { - "result": [ - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729776846, - "last_issuance_block_time": 1729776855, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729776806, - "last_issuance_block_time": 1729776806, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729776746, - "last_issuance_block_time": 1729776750, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729776731, - "last_issuance_block_time": 1729776742, - "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729776712, - "last_issuance_block_time": 1729776728, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": 2, - "result_count": 6 - }, - "/v2/addresses/
/assets/issued": { - "result": [ - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729776846, - "last_issuance_block_time": 1729776855, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729776806, - "last_issuance_block_time": 1729776806, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729776746, - "last_issuance_block_time": 1729776750, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729776731, - "last_issuance_block_time": 1729776742, - "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729776712, - "last_issuance_block_time": 1729776728, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": 2, - "result_count": 6 - }, - "/v2/addresses/
/assets/owned": { - "result": [ - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729776846, - "last_issuance_block_time": 1729776855, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729776806, - "last_issuance_block_time": 1729776806, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729776746, - "last_issuance_block_time": 1729776750, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729776731, - "last_issuance_block_time": 1729776742, - "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729776712, - "last_issuance_block_time": 1729776728, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": 2, - "result_count": 6 - }, - "/v2/addresses/
/transactions": { - "result": [ - { - "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "block_index": 196, - "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "block_time": 1729776983, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "supported": true, - "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "block_index": 193, - "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", - "block_time": 1729776972, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 58, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", - "block_index": 192, - "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", - "block_time": 1729776967, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "supported": true, - "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", - "confirmed": true, - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "status": "valid" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "block_index": 191, - "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", - "block_time": 1729776964, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "block_hash": "36570d30f2c8a11ef5eb589231faff30448991762f60b197be923a4f46e4915c", - "block_time": 1729776961, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "030003802f61f4a6229425911b5b60caf31a874f19d8cf4280c9a769a241e84c930a7effea9ae52dcf5bd948c9804e27f9201757a2b45bc47377f51e88f2fc7bdd07400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", - "supported": true, - "utxos_info": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa:0", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 51, - "result_count": 26 - }, - "/v2/addresses/
/dividends": { - "result": [ - { - "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729776829, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/orders": { - "result": [ - { - "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1729776882, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729776953, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1729776967, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "block_index": 193, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 214, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729776972, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/fairminters": { - "result": [ - { - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1729776834, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1729776746, - "price_normalized": "0.00000050", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1729776731, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1729776728, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1729776708, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/fairmints": { - "result": [ - { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776750, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776742, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776739, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776736, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "cb1e289bbef3e8dd411c8e7ab46bd4311ebb2f232c0f000389a2772bb13aec69", - "tx_index": 15, - "block_index": 127, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776716, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - }, - { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776699, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 6 - }, - "/v2/addresses/
/fairmints/": { - "result": [ - { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776699, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/compose/bet": { - "error": "['feed doesn\u2019t exist']" - }, - "/v2/addresses/
/compose/broadcast": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction": 0.05, - "text": "\"Hello, world!\"" - }, - "name": "broadcast", - "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985102, - "btc_fee": 14898, - "rawtransaction": "0200000000010107ef201f70435ccfd55c0672e94c2e89749a4ab265571941c1f792e4e861961c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a29abc6f3ee51a1acfa5f2baac9cfd477da39c89dd5847527c5c38a6dec6d1ef84cb43c1ddccb9d569bc6ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "broadcast", - "message_type_id": 30, - "message_data": { - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction_int": 5000000, - "text": "\"Hello, world!\"", - "status": "valid", - "fee_fraction_int_normalized": "0.05000000" - } - } - } - }, - "/v2/addresses/
/compose/btcpay": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" - }, - "name": "btcpay", - "data": "434e5452505254590bc614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b254172c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "btc_in": 5000000000, - "btc_out": 3000, - "btc_change": 4999978039, - "btc_fee": 18961, - "rawtransaction": "02000000000101196b9f3fe3445aedae519e648a518ef0402d96c41b372bd6840716d264fef0a20000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03b80b00000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c00000000000000004b6a49f830428a708cd1fd8f241c599f8bf4bb12eae2a2050b11a1fc7f6223969d734b36cfbbf05fc5fe5da66565533b585efaa92b7e81c5bab5c9f3c3da1cfee34d57c8c45c714e1a513d17379c052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/burn": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "quantity": 1000, - "overburn": false - }, - "name": "burn", - "data": null, - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999985149, - "btc_fee": 13851, - "rawtransaction": "0200000000010148cd77c086ac758b3dec28f0cc0429d62a6f83cbfcc1b97f3c60d0bd7fb3c0cb0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acfdb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000" - } - }, - "/v2/addresses/
/compose/cancel": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343" - }, - "name": "cancel", - "data": "434e5452505254594630cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985102, - "btc_fee": 14898, - "rawtransaction": "020000000001018be64a85dcf8f1e03cc49ce87cd59912751d72c02fd7cabde0737765f25443280000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a2990471152c6dae4f78c15c0cc28fc62d158bcf6eb2712ad03a8196ea680abcad8ea1fab6fadb412cd23ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/destroy": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 1000, - "tag": "\"bugs!\"", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "destroy", - "data": "434e5452505254596e000000000000000100000000000003e822627567732122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985656, - "btc_fee": 14344, - "rawtransaction": "020000000001012914188be4dcc990bce10565885ed74e9aa3d224fc723970afa56faa09045cc80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000226a2090f0b966e5633148ff12146fb7aa097e4e6cb8580b60e26427157d4a202e0b0af8b9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "tag": "22627567732122", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dispenser": { - "result": { - "params": { - "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "status": 0, - "open_address": null, - "oracle_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - }, - "name": "dispenser", - "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949970000, - "btc_out": 0, - "btc_change": 4949955041, - "btc_fee": 14959, - "rawtransaction": "0200000000010130926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c502000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2cffffffff0200000000000000002c6a2a203a4b40308e3242e039cc4bf6a43a4dcc9dac389852cd90ced81eee3c31e13463c41f6e7b6eb211a19ae1510a2701000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2c02000000000000", - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dividend": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "quantity_per_unit": 1, - "asset": "FAIRMINTA", - "dividend_asset": "XCP", - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "0.00000001" - }, - "name": "dividend", - "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985595, - "btc_fee": 14405, - "rawtransaction": "020000000001014bee57899ff6f759ebbf6a408801fad2b959912e9311539fa225a729d0cead230000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a2126bb39b583d91f5f66edd1580705f0dbcc4fcd00d3d03b703de3f7f7dbd5a5cef6bbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, - "message_data": { - "asset": "FAIRMINTA", - "quantity_per_unit": 1, - "dividend_asset": "XCP", - "status": "valid", - "quantity_per_unit_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/issuance": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCPTEST", - "quantity": 1000, - "transfer_destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "lock": false, - "reset": false, - "description": null, - "quantity_normalized": "0.00001000" - }, - "name": "issuance", - "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999982956, - "btc_fee": 16498, - "rawtransaction": "02000000000101859ea9abed55ed65724d765e5189070cf600fc37e2bc290a941eaebca0def2a80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03220200000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c0000000000000000236a217a796f64f1291997a2369733a3853d3d2b2bee8bb06629a6a5e0fbe51df7c2342e6caf052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 7136017375, - "asset": "XCPTEST", - "subasset_longname": null, - "quantity": 1000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "status": "valid", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/mpma": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset_dest_quant_list": [ - [ - "XCP", - "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - 1 - ], - [ - "MYASSETA", - "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - 2 - ] - ], - "memo": "\"Hello, world!\"", - "memo_is_hex": false - }, - "name": "mpma", - "data": "434e5452505254590300028051269fef373ad8fe2dd8fce8dca208f10459c33c802f61f4a6229425911b5b60caf31a874f19d8cf428f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", - "btc_in": 20000000000, - "btc_out": 2000, - "btc_change": 19999942840, - "btc_fee": 55160, - "rawtransaction": "0200000000010498bb09d7acee93bd9460f979697a5817a2dc87b58d5ab2a25fbec8a869ce70d60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff200f97ce0f1dfa89e0a5ecf77f68ec1862cafdd753510ac7798b8081b69c9e650000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff48849d4e48c11080f86ec931ff9bd4dfd0ea5091aa752ef946f0d8ac331bc5640000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffe2ee030c19c5b64633b5a0909c50a5a1897adb1914e17aff4842e4c3198eed8c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03e80300000000000069512103b7febaabfa9e6f48cdcfadc0fc4b2dd90df15a4e69132d18302b8c5e32c884d12102508932dd48b41d4cb5758a551ade1b8a4de7c3797f09e52bc57ba9fd1b3890e221036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee80300000000000069512102b8febaabfa9e6f48cdecdaad0e766f67c04660969b2b6e6f6fd72e56c3ccdd1e210293b5faf22940bb6e2150134e41bed17957608e60a7c6a7a4e733cc917757bcf721036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aeb8e816a80400000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000000000000", - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "quantity": 2, - "memo": "\"Hello, world!\"", - "memo_is_hex": false - }, - { - "asset": "XCP", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "quantity": 1, - "memo": "\"Hello, world!\"", - "memo_is_hex": false - } - ] - } - } - }, - "/v2/addresses/
/compose/order": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - }, - "name": "order", - "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999984487, - "btc_fee": 15513, - "rawtransaction": "02000000000101d6d6c20ac623cf5f78c4d26d1416c9a30747c6cf8491dd3fbfc29c3e38d879ae0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000356a338ce6193b4ca4c9f04de91f1cbbd96936ed2065e0c8c751d8a78840942e2fdc186c8375b00aac03f08eaff3c641e5643009173a67b5052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "status": "open", - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - } - } - } - }, - "/v2/addresses/
/compose/send": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "quantity": 1000, - "memo": null, - "memo_is_hex": false, - "use_enhanced_send": true, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802f61f4a6229425911b5b60caf31a874f19d8cf42", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999984794, - "btc_fee": 15206, - "rawtransaction": "02000000000101f7a7defcbc2424b8fcbbad72954ac1bfa9b05c6284de0ef8fdfcaef4b62917a30000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000306a2e9c5c778ec81d6e17ce3b0d8f983ef03a95798ef045e5e049a168fe1b2e1736f53a90ede4e9a4edee9e5bd51d6cd39ab6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "memo": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/sweep": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "flags": 7, - "memo": "FFFF" - }, - "name": "sweep", - "data": "434e54525052545904802f61f4a6229425911b5b60caf31a874f19d8cf4207ffff", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985595, - "btc_fee": 14405, - "rawtransaction": "02000000000101a149c4cd87d1d151c2a93952a35891c5898258795de2350eaa1804497abff6730000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a21b1bdc6cc2f16adb27ce78141657b084106d0ee79ca9d56b1959a6e50b8a0844d2abbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "sweep", - "message_type_id": 4, - "message_data": { - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "flags": 7, - "memo": "ffff" - } - } - } - }, - "/v2/addresses/
/compose/dispense": { - "result": { - "params": { - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "quantity": 1000 - }, - "name": "dispense", - "data": "434e5452505254590d00", - "btc_in": 4949854000, - "btc_out": 1000, - "btc_change": 4949837918, - "btc_fee": 15082, - "rawtransaction": "02000000000101e2bda465882c0adf7f46864df9deceaba3b74c0c47b931647d46799360d5d29d020000001600142f61f4a6229425911b5b60caf31a874f19d8cf42ffffffff03e8030000000000001600144e27f9201757a2b45bc47377f51e88f2fc7bdd0700000000000000000c6a0a61d5685fa6108486fa7c5e880827010000001600142f61f4a6229425911b5b60caf31a874f19d8cf4202000000000000", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - } - } - }, - "/v2/addresses/
/compose/fairminter": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": 0.0, - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "0.00000010", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "name": "fairminter", - "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999984733, - "btc_fee": 15267, - "rawtransaction": "02000000000101e92454ae77e444ac9a980d20447664139decf6e5f4f1c78ea506bc525c2b34980000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000316a2f01c9b40be49ad414f0d78fbfc00f8dcd3314bbdd1cacc0774eceb8c9692f5f9b9bd6de91ee55108869848a9e64ac025db6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "fairminter", - "message_type_id": 90, - "message_data": { - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": "0.00000000", - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "0.00000010", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - } - } - }, - "/v2/addresses/
/compose/fairmint": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTC", - "quantity": 1, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000001" - }, - "name": "fairmint", - "data": "434e5452505254595b464149524d494e54437c31", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986395, - "btc_fee": 13605, - "rawtransaction": "02000000000101d04e1298b5b5c49dfc4d4caf1897e44c6622b3c50111213ffb7e347c792d65a10000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000166a1488f4dd8559678f00388733966b5b22a32fc2ad86dbbc052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", - "unpacked_data": { - "message_type": "fairmint", - "message_type_id": 91, - "message_data": { - "asset": "FAIRMINTC", - "quantity": 1, - "quantity_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/attach": { - "result": { - "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", - "asset": "XCP", - "quantity": 1000, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "utxo", - "data": "434e5452505254596462637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c396464326435363039333739343637643634333162393437306334636237613361626365646566393464383634363766646630613263383836356134626465323a307c5843507c31303030", - "btc_in": 30000000000, - "btc_out": 3000, - "btc_change": 29999914568, - "btc_fee": 82432, - "rawtransaction": "020000000001061e6c164906bb1485bb2cde32a51249e9daee2c98cdfabe196b4f42abcc233e540000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff6b16bd31bf58a6d2813afc535c2a9baab74c05a464afe68a19cc665d6367b8320000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff81868f3768ceba92e6c2dcf97441a1d86a7216d29bd0f1fc5376d9e7c67d8b7e0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffeaa9b753846d6030087bf4832e25c414ccff802dc8ee0625e0d50fd5763701a60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff4a5c203ab326b276327a588ae223c2d1a6a9845c10d214654d3d97fac54793930000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff8c8dfa09ef943b0a7388d3e71344b52d7cd89cbefc3ebf4cef7329418c9e904a0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff04e8030000000000006951210371b03d6a1625098144b14e2028248d520be6e258487524fa75fa8eea88fe95982103e4080ffe7994d8b2525fc2738aa64ac6596add54d528b0df449d2e5a3b80a6a621036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee8030000000000006951210371b03d6a1625098144e515706d6988150efbba0a172923ab79b9c8b9c9e9807a2103b00552aa7f92daa5500e823dd7f00f971a33d655d474b0911ec1725e6ad4a4cc21036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee803000000000000695121035bb03d6a1625098144b74826686a8c5f61dcdc42152871a24d8ef8dafd8ae2072103876461cb1df1bfc13568bb09b3c839a32c04b031b244d1a37df94a685fb590a021036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53ae485e22fc0600000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000002000002000000000000", - "unpacked_data": { - "message_type": "unknown", - "message_type_id": 100, - "message_data": { - "error": "Unknown message type" - } - } - } - }, - "/v2/utxos//compose/detach": { - "result": { - "params": { - "source": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 1000, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "utxo", - "data": "434e54525052545964633465303231633935623533343064636338333663363761633331393363363832626264333833366166326161663039613732626538386338373930353937303a307c62637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c5843507c31303030", - "btc_in": 4950080000, - "btc_out": 3000, - "btc_change": 4950027996, - "btc_fee": 49004, - "rawtransaction": "02000000000103f1604d0af281e6f17db2b6a2630436089bf38359f64c4da626e33d53785c96a701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff30926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c500000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff0b25b8939d7a1b47a973d68655533b29ed214696bc3426e366ec983bc0440dc801000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff04e803000000000000695121022ed54a7ffabca05e51fdb26294d94154ecf2fcc7d9c6c45785bc66229f31171d2103c2c91a59928368eb1c73ca259ed4248fb11c3e2808f6789385e74d5d599ec1c22102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee803000000000000695121032ed54a7ffabca05e51fce96e92d1445cbffef092dccfc01b83bc776e9d76461721028d901d56ccd739e00b33c26288c123d0e71a6c2c09b77ec59aad4d521dc9d6c32102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee8030000000000006951210304d54a7ffabca05e51f7bc3396851219d78899d9ddc5c057e1df051aac07741c2102f4fe7b3aa1b251d87f45f217fcb640bc892f08496ec419f2e3d7743c6eaca3332102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aedc6e0b2701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e02000002000002000000000000", - "unpacked_data": { - "message_type": "unknown", - "message_type_id": 100, - "message_data": { - "error": "Unknown message type" - } - } - } - }, - "/v2/assets": { - "result": [ - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729776846, - "last_issuance_block_time": 1729776855, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETB", - "asset_id": "103804245871", - "asset_longname": null, - "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "owner": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 157, - "last_issuance_block_index": 157, - "confirmed": true, - "first_issuance_block_time": 1729776842, - "last_issuance_block_time": 1729776842, - "supply_normalized": "1000.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729776806, - "last_issuance_block_time": 1729776806, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729776746, - "last_issuance_block_time": 1729776750, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729776731, - "last_issuance_block_time": 1729776742, - "supply_normalized": "0.00000019" - } - ], - "next_cursor": 3, - "result_count": 8 - }, - "/v2/assets/": { - "result": { - "asset": "FAIRMINTA", - "asset_id": "1046814266082", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "", - "first_issuance_block_index": 122, - "last_issuance_block_index": 125, - "confirmed": true, - "first_issuance_block_time": 1729776696, - "last_issuance_block_time": 1729776708, - "supply_normalized": "100.00000000" - } - }, - "/v2/assets//balances": { - "result": [ - { - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 9500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - }, - { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/assets//balances/
": { - "result": [ - { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//orders": { - "result": [ - { - "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1729776882, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729776953, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1729776967, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "block_index": 193, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 214, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729776972, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 52, - "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "block_time": 1729776949, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": 54, - "result_count": 7 - }, - "/v2/assets//matches": { - "result": [ - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1729776953, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1729776949, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx0_index": 49, - "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 50, - "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 183, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1729776882, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//credits": { - "result": [ - { - "block_index": 194, - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "sweep", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776976, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 125, - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "FAIRMINTA", - "quantity": 9000000000, - "calling_function": "fairmint", - "event": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", - "tx_index": 13, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776708, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "90.00000000" - }, - { - "block_index": 124, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776704, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", - "tx_index": 11, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776704, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "escrowed fairmint", - "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776704, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": 12, - "result_count": 6 - }, - "/v2/assets//debits": { - "result": [ - { - "block_index": 198, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "action": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 195, - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "quantity": 1, - "action": "destroy", - "event": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", - "tx_index": 61, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776979, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - }, - { - "block_index": 194, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "XCP", - "quantity": 74499387833, - "action": "sweep", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776976, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "744.99388000" - }, - { - "block_index": 194, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "XCP", - "quantity": 600000, - "action": "sweep fee", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776976, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00600000" - }, - { - "block_index": 193, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "tx_index": 59, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776972, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - } - ], - "next_cursor": 48, - "result_count": 39 - }, - "/v2/assets//dividends": { - "result": [ - { - "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729776829, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//issuances": { - "result": [ - { - "tx_index": 13, - "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", - "msg_index": 0, - "block_index": 125, - "asset": "FAIRMINTA", - "quantity": 9000000000, - "divisible": true, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1729776708, - "quantity_normalized": "90.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 12, - "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", - "msg_index": 0, - "block_index": 124, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1729776704, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 11, - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", - "msg_index": 0, - "block_index": 123, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1729776699, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 10, - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "msg_index": 0, - "block_index": 122, - "asset": "FAIRMINTA", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1729776696, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//sends": { - "result": [ - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 55, - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", - "block_index": 189, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "quantity": 10000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776956, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 44, - "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", - "block_index": 157, - "source": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", - "destination": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776842, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 43, - "tx_hash": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b", - "block_index": 156, - "source": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", - "destination": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/assets//dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 29, - "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", - "block_index": 142, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776772, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", - "block_index": 150, - "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "close_block_index": 150, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776814, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 33, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispensers/
": { - "result": { - "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/assets//holders": { - "result": [ - { - "asset": "FAIRMINTA", - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_12", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "quantity": 500000000, - "escrow": null, - "cursor_id": "balances_13", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_14", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "quantity": 9500000000, - "escrow": null, - "cursor_id": "balances_15", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispenses": { - "result": [ - { - "tx_index": 64, - "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", - "block_index": 147, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729776802, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", - "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776764, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//subassets": { - "result": [ - { - "asset": "A95428959745315388", - "asset_id": "95428959745315388", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 0, - "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1729776850, - "last_issuance_block_time": 1729776850, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairminters": { - "result": [ - { - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1729776708, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairmints": { - "result": [ - { - "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", - "tx_index": 13, - "block_index": 125, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "asset": "FAIRMINTA", - "earn_quantity": 9000000000, - "paid_quantity": 9000000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776708, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "90.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "90.00000000" - }, - { - "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", - "tx_index": 12, - "block_index": 124, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776704, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - }, - { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776699, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//fairmints/
": { - "result": [ - { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776699, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders": { - "result": [ - { - "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1729776882, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 52, - "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "block_time": 1729776949, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729776953, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 54, - "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "block_index": 188, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 209, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729776953, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1729776967, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": 59, - "result_count": 7 - }, - "/v2/orders/": { - "result": { - "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "block_index": 193, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 214, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729776972, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - }, - "/v2/orders//matches": { - "result": [ - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1729776953, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1729776949, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/orders//btcpays": { - "result": [ - { - "tx_index": 53, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", - "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "btc_amount": 2000, - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "status": "valid", - "confirmed": true, - "block_time": 1729776949, - "btc_amount_normalized": "0.00002000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders//": { - "result": [ - { - "tx_index": 52, - "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1729776949, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 54, - "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "block_index": 188, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 209, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1729776953, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729776882, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729776953, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729776967, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": 59, - "result_count": 7 - }, - "/v2/orders///matches": { - "result": [ - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729776953, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729776949, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx0_index": 49, - "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 50, - "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 183, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729776882, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/order_matches": { - "result": [ - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1729776953, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1729776949, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx0_index": 49, - "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_index": 50, - "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 183, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1729776882, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets/": { - "error": "Not found" - }, - "/v2/bets//matches": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets//resolutions": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/burns": { - "result": [ - { - "tx_index": 9, - "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", - "block_index": 121, - "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", - "burned": 50000000, - "earned": 74999996667, - "status": "valid", - "confirmed": true, - "block_time": 1729776691, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 8, - "tx_hash": "5d2861df57ce5565c34227aa101b58099923458e765f9d07292021f503dcc7d8", - "block_index": 120, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "burned": 50000000, - "earned": 74999996833, - "status": "valid", - "confirmed": true, - "block_time": 1729776688, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 7, - "tx_hash": "5e1061c86662cb867de847c20c5c8e890fcae77f9d367d5073f7cc4ad63892cb", - "block_index": 119, - "source": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp", - "burned": 50000000, - "earned": 74999997000, - "status": "valid", - "confirmed": true, - "block_time": 1729776685, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 6, - "tx_hash": "32d9e83755a322ae35d20300f07ef6e652f44a13cd8311d6e23ea204f649cf74", - "block_index": 118, - "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", - "burned": 50000000, - "earned": 74999997167, - "status": "valid", - "confirmed": true, - "block_time": 1729776681, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 5, - "tx_hash": "a0293be2280885f5849d80ab9a4704169384df66188f638cd2a5153687d9d738", - "block_index": 117, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "burned": 50000000, - "earned": 74999997333, - "status": "valid", - "confirmed": true, - "block_time": 1729776677, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - } - ], - "next_cursor": 4, - "result_count": 10 - }, - "/v2/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 29, - "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", - "block_index": 142, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776772, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", - "block_index": 150, - "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "close_block_index": 150, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776814, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 33, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/dispensers//dispenses": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", - "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776764, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/dividends": { - "result": [ - { - "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729776829, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/dividends/": { - "result": { - "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729776829, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - }, - "/v2/dividends//credits": { - "result": [ - { - "block_index": 154, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "calling_function": "dividend", - "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "tx_index": 41, - "utxo": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "confirmed": true, - "block_time": 1729776829, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 154, - "address": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", - "asset": "XCP", - "quantity": 500000000, - "calling_function": "dividend", - "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "tx_index": 41, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729776829, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/events": { - "result": [ - { - "event_index": 577, - "event": "BLOCK_PARSED", - "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", - "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 - }, - "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 576, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 575, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 198, - "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 574, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 572, - "result_count": 578 - }, - "/v2/events/": { - "result": { - "event_index": 577, - "event": "BLOCK_PARSED", - "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", - "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 - }, - "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 - } - }, - "/v2/events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 9 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 52 - }, - { - "event": "SWEEP", - "event_count": 1 - }, - { - "event": "REFILL_DISPENSER", - "event_count": 1 - }, - { - "event": "ORDER_UPDATE", - "event_count": 11 - } - ], - "next_cursor": "ORDER_MATCH_UPDATE", - "result_count": 36 - }, - "/v2/events/": { - "result": [ - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 571, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 568, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 198, - "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - }, - { - "event_index": 559, - "event": "CREDIT", - "params": { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "TESTLOCKDESC", - "block_index": 197, - "calling_function": "dispense", - "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "quantity": 4000, - "tx_index": 63, - "utxo": null, - "utxo_address": null, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00004000" - }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_time": 1729776988 - }, - { - "event_index": 540, - "event": "CREDIT", - "params": { - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "block_index": 194, - "calling_function": "sweep", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "quantity": 74499387833, - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "block_time": 1729776976, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "744.99388000" - }, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "block_index": 194, - "block_time": 1729776976 - } - ], - "next_cursor": 538, - "result_count": 72 - }, - "/v2/events//count": { - "result": { - "event": "CREDIT", - "event_count": 72 - } - }, - "/v2/dispenses": { - "result": [ - { - "tx_index": 64, - "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 63, - "dispense_index": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776988, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", - "block_index": 147, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729776802, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776768, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", - "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729776764, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/sends": { - "result": [ - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "asset": "MYASSETA", - "quantity": 1500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729777001, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729776961, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 11, - "result_count": 16 - }, - "/v2/issuances": { - "result": [ - { - "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776858, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 47, - "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", - "msg_index": 0, - "block_index": 160, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1729776855, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 46, - "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", - "msg_index": 0, - "block_index": 159, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776850, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 45, - "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", - "msg_index": 0, - "block_index": 158, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776846, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 44, - "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", - "msg_index": 0, - "block_index": 157, - "asset": "MYASSETB", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776842, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": 17, - "result_count": 22 - }, - "/v2/issuances/": { - "result": { - "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776858, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - } - }, - "/v2/sweeps": { - "result": [ - { - "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729776976, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/sweeps/": { - "result": [ - { - "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729776976, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/broadcasts": { - "result": [ - { - "tx_index": 25, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", - "block_index": 138, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729776757, - "fee_fraction_int_normalized": "0.00000000" - }, - { - "tx_index": 24, - "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", - "block_index": 137, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729776753, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/broadcasts/": { - "result": { - "tx_index": 25, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", - "block_index": 138, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729776757, - "fee_fraction_int_normalized": "0.00000000" - } - }, - "/v2/fairminters": { - "result": [ - { - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1729776834, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1729776746, - "price_normalized": "0.00000050", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1729776731, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1729776728, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1729776708, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/fairmints": { - "result": [ - { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776750, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776742, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776739, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776736, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "aa41ad4acc191c8b16344683e0338b538e38ea648745ef845646ebcf400d4bca", - "tx_index": 17, - "block_index": 129, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776725, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - } - ], - "next_cursor": 5, - "result_count": 10 - }, - "/v2/fairmints/": { - "result": { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729776750, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - } - }, - "/v2/bitcoin/addresses/utxos": { - "result": [ - { - "vout": 2, - "height": 147, - "value": 4949970000, - "confirmations": 52, - "amount": 49.4997, - "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", - "address": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3" - }, - { - "vout": 2, - "height": 157, - "value": 100000, - "confirmations": 42, - "amount": 0.001, - "txid": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", - "address": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions": { - "result": [ - { - "tx_hash": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c" - }, - { - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66" - }, - { - "tx_hash": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75" - }, - { - "tx_hash": "ca05521ced0559ec4b81787af032ffb25086c7e630d4d3e547794846893fce7c" - }, - { - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e" - }, - { - "tx_hash": "61bef57f9e80c8ad6b0038ec0e933dab81a6de83c79fad2e1c1cf5473edafd94" - }, - { - "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" - }, - { - "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions/oldest": { - "result": { - "block_index": 10, - "tx_hash": "bfcc2c7b7a0e8828957a930dd6850e9f4afe7573b26fdb171ee48bd22549b892" - } - }, - "/v2/bitcoin/addresses/
/utxos": { - "result": [ - { - "vout": 2, - "height": 147, - "value": 4949970000, - "confirmations": 52, - "amount": 49.4997, - "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/pubkey": { - "result": "036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d" - }, - "/v2/bitcoin/transactions/": { - "result": "02000000000101ff1f7ca064400d77f1315a521d2608b64e2585c778c3004f7ffc6e97536f44f30100000000ffffffff03e803000000000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e00000000000000000c6a0a97c9d5cf40cfb0a1a6dddced0827010000001600141a3f8de361dc4f79c9d3a83cceb9183d5321bc8602473044022041255750faa71c2c4470da8b5d8302abdb16e5a00cfec2ec560f75028ce870ca022074d271780c426ca3e148abfc59c17dc376ae80d7905c71ad614f34760953510a012102fff7c08e2157e344ae7c532dc08d4aa1ff6702708e1ae487c8ad2cb8ec0f37d500000000" - }, - "/v2/bitcoin/estimatesmartfee": { - "result": 61563 - }, - "/v2/bitcoin/getmempoolinfo": { - "result": { - "loaded": true, - "size": 1, - "bytes": 167, - "usage": 1216, - "total_fee": 0.0001, - "maxmempool": 300000000, - "mempoolminfee": 1e-05, - "minrelaytxfee": 1e-05, - "incrementalrelayfee": 1e-05, - "unbroadcastcount": 1, - "fullrbf": false - } - }, - "/v2/mempool/events": { - "result": [ - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65 - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "memo": null, - "quantity": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "status": "valid", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "CREDIT", - "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "XCP", - "block_index": 198, - "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "quantity": 10000, - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "block_index": 198, - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "quantity": 10000, - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1729777005.7045548, - "btc_amount": 0, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", - "destination": "", - "fee": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1729777005.7045548 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/mempool/events/": { - "result": [ - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "CREDIT", - "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "XCP", - "block_index": 198, - "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "quantity": 10000, - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/mempool/transactions//events": { - "result": [ - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65 - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "memo": null, - "quantity": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "status": "valid", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "CREDIT", - "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "XCP", - "block_index": 198, - "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "quantity": 10000, - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "block_index": 198, - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "quantity": 10000, - "tx_index": 65, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729777005.7045548 - }, - { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1729777005.7045548, - "btc_amount": 0, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", - "destination": "", - "fee": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1729777005.7045548 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/healthz": { - "result": { - "status": "Healthy" - } - }, - "/healthz": { - "result": { - "status": "Healthy" - } - }, - "/v2/events/NEW_BLOCK": { - "result": [ - { - "event_index": 564, - "event": "NEW_BLOCK", - "params": { - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_index": 198, - "block_time": 1729777001, - "difficulty": 545259519, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28" - }, - "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 556, - "result_count": 98 - }, - "/v2/events/NEW_TRANSACTION": { - "result": [ - { - "event_index": 565, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_index": 198, - "block_time": 1729777001, - "btc_amount": 1000, - "data": "0d00", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "fee": 0, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 557, - "result_count": 65 - }, - "/v2/events/NEW_TRANSACTION_OUTPUT": { - "result": [ - { - "event_index": 566, - "event": "NEW_TRANSACTION_OUTPUT", - "params": { - "block_index": 198, - "btc_amount": 1000, - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "out_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 558, - "result_count": 5 - }, - "/v2/events/BLOCK_PARSED": { - "result": [ - { - "event_index": 577, - "event": "BLOCK_PARSED", - "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", - "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 - }, - "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 563, - "result_count": 98 - }, - "/v2/events/TRANSACTION_PARSED": { - "result": [ - { - "event_index": 576, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 562, - "result_count": 52 - }, - "/v2/events/DEBIT": { - "result": [ - { - "event_index": 570, - "event": "DEBIT", - "params": { - "action": "utxo move", - "address": null, - "asset": "XCP", - "block_index": 198, - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 1500000000, - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 567, - "result_count": 57 - }, - "/v2/events/CREDIT": { - "result": [ - { - "event_index": 573, - "event": "CREDIT", - "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "asset": "XCP", - "block_index": 198, - "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "quantity": 66, - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 571, - "result_count": 72 - }, - "/v2/events/ENHANCED_SEND": { - "result": [ - { - "event_index": 498, - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 189, - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "memo": null, - "quantity": 10000, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "status": "valid", - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", - "tx_index": 55, - "block_time": 1729776956, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", - "block_index": 189, - "block_time": 1729776956 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/MPMA_SEND": { - "result": [ - { - "event_index": 510, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 190, - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "memo": null, - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": "valid", - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "tx_index": 56, - "block_time": 1729776961, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "block_time": 1729776961 - } - ], - "next_cursor": 509, - "result_count": 3 - }, - "/v2/events/SEND": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_TRANSFER": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/SWEEP": { - "result": [ - { - "event_index": 541, - "event": "SWEEP", - "params": { - "block_index": 194, - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "fee_paid": 600000, - "flags": 1, - "memo": "sweep my assets", - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "status": "valid", - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "tx_index": 60, - "block_time": 1729776976, - "fee_paid_normalized": "0.00600000" - }, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "block_index": 194, - "block_time": 1729776976 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ASSET_DIVIDEND": { - "result": [ - { - "event_index": 337, - "event": "ASSET_DIVIDEND", - "params": { - "asset": "MYASSETA", - "block_index": 154, - "dividend_asset": "XCP", - "fee_paid": 40000, - "quantity_per_unit": 100000000, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": "valid", - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "tx_index": 41, - "block_time": 1729776829, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - }, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", - "block_index": 154, - "block_time": 1729776829 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/RESET_ISSUANCE": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_CREATION": { - "result": [ - { - "event_index": 394, - "event": "ASSET_CREATION", - "params": { - "asset_id": "95428956980101314", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "asset_name": "A95428956980101314", - "block_index": 161, - "block_time": 1729776858 - }, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "block_index": 161, - "block_time": 1729776858 - } - ], - "next_cursor": 381, - "result_count": 10 - }, - "/v2/events/ASSET_ISSUANCE": { - "result": [ - { - "event_index": 395, - "event": "ASSET_ISSUANCE", - "params": { - "asset": "A95428956980101314", - "asset_events": "creation", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "block_index": 161, - "call_date": 0, - "call_price": 0.0, - "callable": false, - "description": "A subnumeric asset", - "description_locked": false, - "divisible": true, - "fee_paid": 0, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "locked": false, - "quantity": 100000000000, - "reset": false, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": "valid", - "transfer": false, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "tx_index": 48, - "block_time": 1729776858, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "block_index": 161, - "block_time": 1729776858 - } - ], - "next_cursor": 388, - "result_count": 22 - }, - "/v2/events/ASSET_DESTRUCTION": { - "result": [ - { - "event_index": 547, - "event": "ASSET_DESTRUCTION", - "params": { - "asset": "XCP", - "block_index": 195, - "quantity": 1, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "status": "valid", - "tag": "64657374726f79", - "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", - "tx_index": 61, - "block_time": 1729776979, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - }, - "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", - "block_index": 195, - "block_time": 1729776979 - } - ], - "next_cursor": 157, - "result_count": 2 - }, - "/v2/events/OPEN_ORDER": { - "result": [ - { - "event_index": 529, - "event": "OPEN_ORDER", - "params": { - "block_index": 193, - "expiration": 21, - "expire_index": 214, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": "open", - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "tx_index": 59, - "block_time": 1729776972, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "block_index": 193, - "block_time": 1729776972 - } - ], - "next_cursor": 516, - "result_count": 7 - }, - "/v2/events/ORDER_MATCH": { - "result": [ - { - "event_index": 491, - "event": "ORDER_MATCH", - "params": { - "backward_asset": "BTC", - "backward_quantity": 3000, - "block_index": 188, - "fee_paid": 0, - "forward_asset": "XCP", - "forward_quantity": 3000, - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "match_expire_index": 208, - "status": "pending", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx0_block_index": 186, - "tx0_expiration": 21, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_index": 51, - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "tx1_block_index": 188, - "tx1_expiration": 21, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_index": 54, - "block_time": 1729776953, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "block_index": 188, - "block_time": 1729776953 - } - ], - "next_cursor": 475, - "result_count": 3 - }, - "/v2/events/ORDER_UPDATE": { - "result": [ - { - "event_index": 521, - "event": "ORDER_UPDATE", - "params": { - "status": "cancelled", - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b" - }, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", - "block_index": 192, - "block_time": 1729776967 - } - ], - "next_cursor": 490, - "result_count": 11 - }, - "/v2/events/ORDER_FILLED": { - "result": [ - { - "event_index": 482, - "event": "ORDER_FILLED", - "params": { - "status": "filled", - "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a" - }, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", - "block_index": 187, - "block_time": 1729776949 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_MATCH_UPDATE": { - "result": [ - { - "event_index": 481, - "event": "ORDER_MATCH_UPDATE", - "params": { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "status": "completed" - }, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", - "block_index": 187, - "block_time": 1729776949 - } - ], - "next_cursor": 454, - "result_count": 2 - }, - "/v2/events/BTC_PAY": { - "result": [ - { - "event_index": 483, - "event": "BTC_PAY", - "params": { - "block_index": 187, - "btc_amount": 2000, - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "status": "valid", - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", - "tx_index": 53, - "block_time": 1729776949, - "btc_amount_normalized": "0.00002000" - }, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", - "block_index": 187, - "block_time": 1729776949 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/CANCEL_ORDER": { - "result": [ - { - "event_index": 523, - "event": "CANCEL_ORDER", - "params": { - "block_index": 192, - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": "valid", - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", - "tx_index": 58, - "block_time": 1729776967 - }, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", - "block_index": 192, - "block_time": 1729776967 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_EXPIRATION": { - "result": [ - { - "event_index": 462, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 184, - "order_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "block_time": 1729776882 - }, - "tx_hash": null, - "block_index": 184, - "block_time": 1729776882 - } - ], - "next_cursor": 460, - "result_count": 2 - }, - "/v2/events/ORDER_MATCH_EXPIRATION": { - "result": [ - { - "event_index": 457, - "event": "ORDER_MATCH_EXPIRATION", - "params": { - "block_index": 184, - "order_match_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "block_time": 1729776882 - }, - "tx_hash": null, - "block_index": 184, - "block_time": 1729776882 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/OPEN_DISPENSER": { - "result": [ - { - "event_index": 553, - "event": "OPEN_DISPENSER", - "params": { - "asset": "TESTLOCKDESC", - "block_index": 196, - "dispense_count": 0, - "escrow_quantity": 10000, - "give_quantity": 1, - "give_remaining": 10000, - "oracle_address": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "satoshirate": 1, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": 0, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "tx_index": 62, - "block_time": 1729776983, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001" - }, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "block_index": 196, - "block_time": 1729776983 - } - ], - "next_cursor": 272, - "result_count": 5 - }, - "/v2/events/DISPENSER_UPDATE": { - "result": [ - { - "event_index": 574, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 560, - "result_count": 8 - }, - "/v2/events/REFILL_DISPENSER": { - "result": [ - { - "event_index": 261, - "event": "REFILL_DISPENSER", - "params": { - "asset": "XCP", - "block_index": 144, - "destination": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", - "dispense_quantity": 10, - "dispenser_tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx_hash": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", - "tx_index": 31, - "block_time": 1729776791, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000010" - }, - "tx_hash": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", - "block_index": 144, - "block_time": 1729776791 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/DISPENSE": { - "result": [ - { - "event_index": 575, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 198, - "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 561, - "result_count": 5 - }, - "/v2/events/BROADCAST": { - "result": [ - { - "event_index": 218, - "event": "BROADCAST", - "params": { - "block_index": 138, - "fee_fraction_int": 0, - "locked": false, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "status": "valid", - "text": "price-USD", - "timestamp": 4003903983, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", - "tx_index": 25, - "value": 66600.0, - "block_time": 1729776757, - "fee_fraction_int_normalized": "0.00000000" - }, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", - "block_index": 138, - "block_time": 1729776757 - } - ], - "next_cursor": 213, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINTER": { - "result": [ - { - "event_index": 342, - "event": "NEW_FAIRMINTER", - "params": { - "asset": "A95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "asset_parent": "MYASSETA", - "block_index": 155, - "burn_payment": false, - "description": "", - "divisible": true, - "end_block": 0, - "hard_cap": 0, - "lock_description": false, - "lock_quantity": false, - "max_mint_per_tx": 0, - "minted_asset_commission_int": 0, - "pre_minted": false, - "premint_quantity": 0, - "price": 1, - "quantity_by_price": 5, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "start_block": 0, - "status": "open", - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", - "tx_index": 42, - "block_time": 1729776834, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", - "block_index": 155, - "block_time": 1729776834 - } - ], - "next_cursor": 196, - "result_count": 5 - }, - "/v2/events/FAIRMINTER_UPDATE": { - "result": [ - { - "event_index": 155, - "event": "FAIRMINTER_UPDATE", - "params": { - "status": "closed", - "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3" - }, - "tx_hash": null, - "block_index": 130, - "block_time": 1729776728 - } - ], - "next_cursor": 110, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINT": { - "result": [ - { - "event_index": 207, - "event": "NEW_FAIRMINT", - "params": { - "asset": "FAIRMINTD", - "block_index": 136, - "commission": 0, - "earn_quantity": 40, - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", - "paid_quantity": 34, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "status": "valid", - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", - "tx_index": 23, - "block_time": 1729776750, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", - "block_index": 136, - "block_time": 1729776750 - } - ], - "next_cursor": 190, - "result_count": 10 - }, - "/v2/events/ATTACH_TO_UTXO": { - "result": [ - { - "event_index": 319, - "event": "ATTACH_TO_UTXO", - "params": { - "asset": "MYASSETA", - "block_index": 152, - "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "status": "valid", - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", - "tx_index": 39, - "block_time": 1729776822, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", - "block_index": 152, - "block_time": 1729776822 - } - ], - "next_cursor": 296, - "result_count": 2 - }, - "/v2/events/DETACH_FROM_UTXO": { - "result": [ - { - "event_index": 311, - "event": "DETACH_FROM_UTXO", - "params": { - "asset": "MYASSETA", - "block_index": 151, - "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", - "fee_paid": 0, - "msg_index": 0, - "quantity": 500000000, - "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", - "status": "valid", - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", - "tx_index": 38, - "block_time": 1729776818, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", - "block_index": 151, - "block_time": 1729776818 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/UTXO_MOVE": { - "result": [ - { - "event_index": 572, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 198, - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "msg_index": 1, - "quantity": 1500000000, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "status": "valid", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 - } - ], - "next_cursor": 569, - "result_count": 9 - }, - "/v2/events/BURN": { - "result": [ - { - "event_index": 70, - "event": "BURN", - "params": { - "block_index": 121, - "burned": 50000000, - "earned": 74999996667, - "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", - "status": "valid", - "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", - "tx_index": 9, - "block_time": 1729776691, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", - "block_index": 121, - "block_time": 1729776691 - } - ], - "next_cursor": 65, - "result_count": 10 - } -} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 756dc254f8..36ac4e1d52 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -105,7 +105,8 @@ def send_transaction( self.wait_for_counterparty_server() if return_only_data: params["return_only_data"] = True - params["exact_fee"] = 10000 # fixed fee + if "exact_fee" not in params: + params["exact_fee"] = 10000 # fixed fee query_string = urllib.parse.urlencode(params) if tx_name in ["detach", "movetoutxo"]: compose_url = f"utxos/{source}/compose/{tx_name}?{query_string}" @@ -228,6 +229,8 @@ def start_bitcoin_node(self): "-zmqpubrawblock=tcp://0.0.0.0:29333", "-fallbackfee=0.0002", "-acceptnonstdtxn", + "-minrelaytxfee=0", + "-blockmintxfee=0", f"-datadir={self.datadir}", _bg=True, _out=sys.stdout, @@ -248,6 +251,8 @@ def start_bitcoin_node_2(self): f"-datadir={self.datadir}/node2", "-port=28444", "-rpcport=28443", + "-minrelaytxfee=0", + "-blockmintxfee=0", _bg=True, _out=sys.stdout, ) diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py new file mode 100644 index 0000000000..d60233179a --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -0,0 +1,345 @@ +SCENARIO = [ + { + "title": "Create asset UTXOASSET", + "transaction": "issuance", + "source": "$ADDRESS_7", + "params": { + "asset": "UTXOASSET", + "quantity": 1000 * 10**8, + "divisible": True, + "description": "My super asset", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=CREDIT,ASSET_ISSUANCE,ASSET_CREATION,DEBIT", + "result": [ + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "address": "$ADDRESS_7", + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "issuance", + "event": "$TX_HASH", + "quantity": 100000000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_ISSUANCE", + "event_index": "$EVENT_INDEX_5", + "params": { + "asset": "UTXOASSET", + "asset_longname": None, + "asset_events": "creation", + "block_index": "$BLOCK_INDEX", + "call_date": 0, + "call_price": 0.0, + "callable": False, + "description": "My super asset", + "description_locked": False, + "divisible": True, + "fee_paid": 50000000, + "issuer": "$ADDRESS_7", + "locked": False, + "quantity": 100000000000, + "reset": False, + "source": "$ADDRESS_7", + "status": "valid", + "transfer": False, + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "ASSET_CREATION", + "event_index": "$EVENT_INDEX_4", + "params": { + "asset_id": "4336417415635", + "asset_longname": None, + "asset_name": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "action": "issuance fee", + "address": "$ADDRESS_7", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 50000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Attach asset to UTXO", + "transaction": "attach", + "source": "$ADDRESS_7", + "params": { + "asset": "UTXOASSET", + "quantity": 10 * 10**8, + }, + "set_variables": { + "UTXOASSET_UTXO_1_TX_HASH": "$TX_HASH", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=ATTACH_TO_UTXO,INCREMENT_TRANSACTION_COUNT,CREDIT,DEBIT", + "result": [ + { + "event": "ATTACH_TO_UTXO", + "event_index": "$EVENT_INDEX_6", + "params": { + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$TX_HASH:1", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "$ADDRESS_7", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "INCREMENT_TRANSACTION_COUNT", + "event_index": "$EVENT_INDEX_5", + "params": { + "block_index": "$BLOCK_INDEX", + "count": 1, + "transaction_id": 100, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "attach to utxo", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": "$TX_HASH:1", + "utxo_address": "$ADDRESS_7", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "action": "attach to utxo", + "address": "$ADDRESS_7", + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Move assets from UTXO to UTXO", + "transaction": "movetoutxo", + "source": "$UTXOASSET_UTXO_1_TX_HASH:1", + "no_confirmation": True, + "params": { + "destination": "$ADDRESS_8", + }, + "set_variables": { + "UTXOASSET_UTXO_2_TX_HASH": "$TX_HASH", + "UTXOASSET_UTXO_2_TX_INDEX": "$TX_INDEX", + }, + "controls": [ + { + "url": "mempool/transactions/$TX_HASH/events?event_name=UTXO_MOVE,CREDIT,DEBIT", + "result": [ + { + "event": "UTXO_MOVE", + "params": { + "asset": "UTXOASSET", + "block_index": 9999999, + "destination": "$TX_HASH:0", + "msg_index": 0, + "quantity": 1000000000, + "source": "$UTXOASSET_UTXO_1_TX_HASH:1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "params": { + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "utxo move", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": "$TX_HASH:0", + "utxo_address": "$ADDRESS_8", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "params": { + "action": "utxo move", + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": "$UTXOASSET_UTXO_1_TX_HASH:1", + "utxo_address": "$ADDRESS_7", + }, + "tx_hash": "$TX_HASH", + }, + ], + } + ], + }, + { + "title": "Move assets from UTXO to UTXO", + "transaction": "movetoutxo", + "source": "$UTXOASSET_UTXO_2_TX_HASH:0", + "params": { + "destination": "$ADDRESS_7", + "exact_fee": 0, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=UTXO_MOVE,CREDIT,DEBIT", + "result": [ + { + "event": "UTXO_MOVE", + "event_index": "$EVENT_INDEX_9", + "params": { + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$TX_HASH:0", + "msg_index": 0, + "quantity": 1000000000, + "source": "$UTXOASSET_UTXO_2_TX_HASH:0", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_8", + "params": { + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "utxo move", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": "$TX_HASH:0", + "utxo_address": "$ADDRESS_7", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_7", + "params": { + "action": "utxo move", + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 1000000000, + "tx_index": "$TX_INDEX", + "utxo": "$UTXOASSET_UTXO_2_TX_HASH:0", + "utxo_address": "$ADDRESS_8", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "UTXO_MOVE", + "event_index": "$EVENT_INDEX_6", + "params": { + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$UTXOASSET_UTXO_2_TX_HASH:0", + "msg_index": 0, + "quantity": 1000000000, + "source": "$UTXOASSET_UTXO_1_TX_HASH:1", + "status": "valid", + "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", + "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", + }, + "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "utxo move", + "event": "$UTXOASSET_UTXO_2_TX_HASH", + "quantity": 1000000000, + "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", + "utxo": "$UTXOASSET_UTXO_2_TX_HASH:0", + "utxo_address": "$ADDRESS_8", + }, + "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "action": "utxo move", + "address": None, + "asset": "UTXOASSET", + "block_index": "$BLOCK_INDEX", + "event": "$UTXOASSET_UTXO_2_TX_HASH", + "quantity": 1000000000, + "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", + "utxo": "$UTXOASSET_UTXO_1_TX_HASH:1", + "utxo_address": "$ADDRESS_7", + }, + "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", + }, + ], + }, + ], + }, +] diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index d7eccf8834..4ebb2baca2 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -27,6 +27,7 @@ scenario_15_destroy, scenario_16_fairminter, scenario_17_dispenser, + scenario_18_utxo, scenario_last_mempool, ) from termcolor import colored @@ -49,14 +50,14 @@ SCENARIOS += scenario_14_sweep.SCENARIO SCENARIOS += scenario_15_destroy.SCENARIO SCENARIOS += scenario_17_dispenser.SCENARIO +SCENARIOS += scenario_18_utxo.SCENARIO # more scenarios before this one SCENARIOS += scenario_last_mempool.SCENARIO CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -# SCENARIOS = [] -# SCENARIOS += scenario_1_fairminter.SCENARIO +SCENARIOS = scenario_18_utxo.SCENARIO def compare_strings(string1, string2): @@ -340,7 +341,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - # print(regtest_node_thread.node.server_out.getvalue()) + print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From f0b999bb69d316199c2af8460377c05748dd123e Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 09:48:36 +0000 Subject: [PATCH 63/71] Don't update utxos cache on mempool transactions --- counterparty-core/counterpartycore/lib/ledger.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index 28901ecc3a..e47c413628 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -406,7 +406,8 @@ def credit(db, address, asset, quantity, tx_index, action=None, event=None): credit_address = None utxo = address utxo_address = backend.bitcoind.safe_get_utxo_address(utxo) - UTXOBalancesCache(db).add_balance(utxo) + if block_index != config.MEMPOOL_BLOCK_INDEX and not util.PARSING_MEMPOOL: + UTXOBalancesCache(db).add_balance(utxo) add_to_balance(db, address, asset, quantity, tx_index, utxo_address) @@ -473,6 +474,7 @@ def has_balance(self, utxo): return utxo in self.utxos_with_balance def add_balance(self, utxo): + logger.warning(f"Adding balance for utxo {utxo}") self.utxos_with_balance[utxo] = True From 59a9c430c63813d7ad2c2f2fdae6d97a67d881c6 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 09:59:11 +0000 Subject: [PATCH 64/71] Update utxos balances cache before parsing tx --- counterparty-core/counterpartycore/lib/gettxinfo.py | 4 ++++ counterparty-core/counterpartycore/lib/ledger.py | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/gettxinfo.py b/counterparty-core/counterpartycore/lib/gettxinfo.py index 74ff07c7cb..e7983f58ae 100644 --- a/counterparty-core/counterpartycore/lib/gettxinfo.py +++ b/counterparty-core/counterpartycore/lib/gettxinfo.py @@ -590,6 +590,10 @@ def get_tx_info(db, decoded_tx, block_index): """Get the transaction info. Returns normalized None data for DecodeError and BTCOnlyError.""" if util.enabled("utxo_support", block_index=block_index): utxos_info = get_utxos_info(db, decoded_tx) + # update utxo balances cache before parsing the transaction + # to catch chained utxo moves + if len(utxos_info) > 1 and not util.PARSING_MEMPOOL: + ledger.UTXOBalancesCache(db).add_balance(utxos_info[-1]) else: utxos_info = [] try: diff --git a/counterparty-core/counterpartycore/lib/ledger.py b/counterparty-core/counterpartycore/lib/ledger.py index e47c413628..80c85908bf 100644 --- a/counterparty-core/counterpartycore/lib/ledger.py +++ b/counterparty-core/counterpartycore/lib/ledger.py @@ -474,7 +474,6 @@ def has_balance(self, utxo): return utxo in self.utxos_with_balance def add_balance(self, utxo): - logger.warning(f"Adding balance for utxo {utxo}") self.utxos_with_balance[utxo] = True From 18c6d3135c1ec78d5046dd62cea5ce77f7c43600 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 10:10:57 +0000 Subject: [PATCH 65/71] clean debug --- .../test/regtest/apidoc/apicache.json | 11010 ++++++++++++++++ .../regtest/scenarios/scenario_18_utxo.py | 2 +- .../test/regtest/testscenarios.py | 4 +- 3 files changed, 11013 insertions(+), 3 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json new file mode 100644 index 0000000000..cf9a7fa324 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -0,0 +1,11010 @@ +{ + "/v2/blocks": { + "result": [ + { + "block_index": 201, + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_time": 1729850846, + "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "difficulty": 545259519, + "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", + "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", + "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 200, + "block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "block_time": 1729850833, + "previous_block_hash": "15f4cf317a9fb3a2df61e4bfa8fe4aeb5bba70ce46225995289cfcf5da4b283c", + "difficulty": 545259519, + "ledger_hash": "671b15b349acb0309d80d9e17c1d91107a0ce65d2481b8e57d731381ed17a572", + "txlist_hash": "f5d17f8789117cb682a24a06bb808bb20b0ceec1b586846f2f1689d774c8eca9", + "messages_hash": "b34a485b68de1fcadf9875a1f3fbaec92a59da8362e5ea8f626f4c776679a43f", + "transaction_count": 2, + "confirmed": true + }, + { + "block_index": 199, + "block_hash": "15f4cf317a9fb3a2df61e4bfa8fe4aeb5bba70ce46225995289cfcf5da4b283c", + "block_time": 1729850823, + "previous_block_hash": "4537422349c9d869b817812907891777297abfd6eb85e805aa1bde4dccf45959", + "difficulty": 545259519, + "ledger_hash": "9d2fdbdec7050cfb89a17f6a043eaf14406f9a508f9a082ef2f6073be024c5fe", + "txlist_hash": "b2962dd15619e564065ea0d70b576defa99949b7837ea6018aee1ad8b39ec5c1", + "messages_hash": "5c9e9f6b377879b7951ccb20e0418fbc2fcd5f25636ad5ccc6d5bae338d55c86", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 198, + "block_hash": "4537422349c9d869b817812907891777297abfd6eb85e805aa1bde4dccf45959", + "block_time": 1729850819, + "previous_block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", + "difficulty": 545259519, + "ledger_hash": "b0f837cad2126a4b84b5c1295f01a86d44deb78f4c6c21257522e463ec053945", + "txlist_hash": "a8c72efea66be2c7ef8b24f255749cc1694876c1e988b2a1d967a4c910f77e97", + "messages_hash": "0d8bbdedfb8c378cb69b1c78960dcfffb4252dea46c1292dea56f23b515cd25c", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 197, + "block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", + "block_time": 1729850816, + "previous_block_hash": "5dc2075d0940c78b09e44b1220841b8880685e2cc2bd468350d94b1442c5c19b", + "difficulty": 545259519, + "ledger_hash": "d8c900642dc847b1656c84b5892afbb1970ca326e68631e0caef1412457d2b14", + "txlist_hash": "4e25078d7ef3914ce272a5b1b510a45283bdea68c7538d6f92d63a93a104d03a", + "messages_hash": "743983ba39244825811e5330ce81b07c79ffe388decff29b145003ae09a37b51", + "transaction_count": 1, + "confirmed": true + } + ], + "next_cursor": 196, + "result_count": 101 + }, + "/v2/blocks/": { + "result": { + "block_index": 201, + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_time": 1729850846, + "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "difficulty": 545259519, + "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", + "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", + "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks/": { + "result": { + "block_index": 201, + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_time": 1729850846, + "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "difficulty": 545259519, + "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", + "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", + "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks//transactions": { + "result": [ + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_time": 1729850846, + "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//events": { + "result": [ + { + "event_index": 603, + "event": "BLOCK_PARSED", + "params": { + "block_index": 201, + "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", + "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "transaction_count": 1, + "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", + "block_time": 1729850846 + }, + "tx_hash": null + }, + { + "event_index": 602, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68 + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + }, + { + "event_index": 601, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 201, + "btc_amount": 1000, + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + }, + { + "event_index": 600, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "status": 0, + "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + }, + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + } + ], + "next_cursor": 598, + "result_count": 14 + }, + "/v2/blocks//events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 2 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 1 + }, + { + "event": "NEW_TRANSACTION_OUTPUT", + "event_count": 1 + }, + { + "event": "NEW_TRANSACTION", + "event_count": 1 + }, + { + "event": "NEW_BLOCK", + "event_count": 1 + } + ], + "next_cursor": "DISPENSER_UPDATE", + "result_count": 10 + }, + "/v2/blocks//events/": { + "result": [ + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + }, + { + "event_index": 597, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + }, + { + "event_index": 594, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//credits": { + "result": [ + { + "block_index": 201, + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "quantity": 66, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + { + "block_index": 201, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 201, + "address": null, + "asset": "MYASSETA", + "quantity": 1500000000, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//debits": { + "result": [ + { + "block_index": 201, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "action": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 201, + "address": null, + "asset": "MYASSETA", + "quantity": 1500000000, + "action": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//expirations": { + "result": [ + { + "type": "order", + "object_id": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "block_index": 184, + "confirmed": true, + "block_time": 1729850698 + }, + { + "type": "order", + "object_id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "block_index": 184, + "confirmed": true, + "block_time": 1729850698 + }, + { + "type": "order_match", + "object_id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "block_index": 184, + "confirmed": true, + "block_time": 1729850698 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//cancels": { + "result": [ + { + "tx_index": 58, + "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "block_index": 192, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "status": "valid", + "confirmed": true, + "block_time": 1729850796 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//destructions": { + "result": [ + { + "tx_index": 61, + "tx_hash": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "block_index": 195, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "quantity": 1, + "tag": "64657374726f79", + "status": "valid", + "confirmed": true, + "block_time": 1729850809, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000001" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//issuances": { + "result": [ + { + "tx_index": 64, + "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "msg_index": 0, + "block_index": 198, + "asset": "UTXOASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850819, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sends": { + "result": [ + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "asset": "MYASSETA", + "quantity": 1500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//dispenses": { + "result": [ + { + "tx_index": 68, + "dispense_index": 0, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sweeps": { + "result": [ + { + "tx_index": 60, + "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "block_index": 194, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1729850805, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairminters": { + "result": [ + { + "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1729850651, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairmints": { + "result": [ + { + "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850561, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions": { + "result": [ + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_time": 1729850846, + "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 67, + "tx_hash": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "block_index": 200, + "block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "block_time": 1729850833, + "source": "", + "destination": null, + "btc_amount": null, + "fee": null, + "data": null, + "supported": true, + "utxos_info": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0 e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8:0", + "confirmed": true + } + ], + "next_cursor": 66, + "result_count": 69 + }, + "/v2/transactions/info": { + "result": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "b1ba8f609a874ce7cf083b899f19bb45fd40c9cf6f4b065c1c842f8b1c7e0ab0", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a2a6e0c7ba9076dfbfe526cf8925ea6e9f2d11e7df7948c3fba27344b9be6e8a727a2ec3491546e5cabc193" + }, + { + "value": 4999990000, + "script_pub_key": "0014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96" + } + ], + "vtxinwit": [ + "304402207da4c91d21603de940efa9ff58e4cc8fe04a5003c1971a69090d0bb068db2c300220364225d0b7ff88d61b24686978dbd74dda5c532835eedc9fd63b1445041b5a5001", + "030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d6" + ], + "lock_time": 0, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_id": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b" + }, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + } + }, + "/v2/transactions//info": { + "result": { + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "6f31ec9ee0ea6b7c78201740d89edfd20434e6e82e651d5a80aaa4a50ab65ed2", + "n": 1, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a2e3d6a41ddf999864b3091446158f71bea0abdab131871e09cc451085e4547a010fdc04f4b3ad17b7a10b995611f17" + }, + { + "value": 4999970000, + "script_pub_key": "001440802c79e893db48415ba76f3efb225d23934589" + } + ], + "vtxinwit": [ + "304402203b8f53c298156bd2ccfa7f22af9c171fe1d2d6b2a4742aebb7541567164e48ce02202b9baafbc36b5ae63b9a16c2841ee30f815013ef046b115f8d9f1352a1e5ad0d01", + "03b535ed563f9b6da52bf981344116831b478d9984f889104cce1ad15f805b7368" + ], + "lock_time": 0, + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_id": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027" + }, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + } + }, + "/v2/transactions/unpack": { + "result": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "error": "memo too long" + } + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_time": 1729850846, + "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_time": 1729850846, + "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 602, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68 + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 601, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 201, + "btc_amount": 1000, + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 600, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "status": 0, + "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 598, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 201, + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "msg_index": 1, + "quantity": 1500000000, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "status": "valid", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 597, + "result_count": 12 + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 602, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68 + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 601, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 201, + "btc_amount": 1000, + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 600, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "status": 0, + "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 598, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 201, + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "msg_index": 1, + "quantity": 1500000000, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "status": "valid", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 597, + "result_count": 12 + }, + "/v2/transactions//sends": { + "result": [ + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "asset": "MYASSETA", + "quantity": 1500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/transactions//dispenses": { + "result": [ + { + "tx_index": 68, + "dispense_index": 0, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 597, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 594, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 597, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 594, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/balances": { + "result": [ + { + "asset": "A95428956980101314", + "total": 100000000000, + "addresses": [ + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "utxo": null, + "utxo_address": null, + "quantity": 100000000000, + "quantity_normalized": "1000.00000000" + } + ], + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "total_normalized": "1000.00000000" + }, + { + "asset": "MYASSETA", + "total": 97999999980, + "addresses": [ + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "utxo": null, + "utxo_address": null, + "quantity": 97999999980, + "quantity_normalized": "980.00000000" + } + ], + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "total_normalized": "980.00000000" + }, + { + "asset": "FAIRMINTA", + "total": 500000000, + "addresses": [ + { + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "utxo": null, + "utxo_address": null, + "quantity": 500000000, + "quantity_normalized": "5.00000000" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "total_normalized": "5.00000000" + }, + { + "asset": "FAIRMINTD", + "total": 40, + "addresses": [ + { + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "utxo": null, + "utxo_address": null, + "quantity": 40, + "quantity_normalized": "0.00000040" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "total": 19, + "addresses": [ + { + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "utxo": null, + "utxo_address": null, + "quantity": 19, + "quantity_normalized": "0.00000019" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000019" + } + ], + "next_cursor": "TESTLOCKDESC", + "result_count": 7 + }, + "/v2/addresses/transactions": { + "result": [ + { + "tx_index": 63, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", + "block_time": 1729850816, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "btc_amount": 4000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 62, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "block_index": 196, + "block_hash": "5dc2075d0940c78b09e44b1220841b8880685e2cc2bd468350d94b1442c5c19b", + "block_time": 1729850812, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b:1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 59, + "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "block_index": 193, + "block_hash": "33caddbbef8935092f32bd1b1f8ed37e89bead62a25ffbbf30b1f7f60bb0676d", + "block_time": 1729850800, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 58, + "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "block_index": 192, + "block_hash": "17e86f80cd8d3451f9f0c4f453eed8aacac760085c75799ee5930815fdebfb41", + "block_time": 1729850796, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "4658d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "supported": true, + "utxos_info": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a:1", + "confirmed": true, + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "status": "valid" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 57, + "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "block_index": 191, + "block_hash": "2f1d61e212a65a968e0535bc0b61998bf417480edd59b3d5639e25377aa62050", + "block_time": 1729850783, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 56, + "result_count": 39 + }, + "/v2/addresses/events": { + "result": [ + { + "event_index": 561, + "event": "DISPENSE", + "params": { + "asset": "TESTLOCKDESC", + "block_index": 197, + "btc_amount": 4000, + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "dispense_index": 0, + "dispense_quantity": 4000, + "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_index": 63, + "block_time": 1729850816, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "block_time": 1729850816 + }, + { + "event_index": 560, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "TESTLOCKDESC", + "dispense_count": 1, + "give_remaining": 6000, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "status": 0, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_remaining_normalized": "0.00006000" + }, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "block_time": 1729850816 + }, + { + "event_index": 559, + "event": "CREDIT", + "params": { + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "TESTLOCKDESC", + "block_index": 197, + "calling_function": "dispense", + "event": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "quantity": 4000, + "tx_index": 63, + "utxo": null, + "utxo_address": null, + "block_time": 1729850816, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00004000" + }, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "block_time": 1729850816 + }, + { + "event_index": 557, + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", + "block_index": 197, + "block_time": 1729850816, + "btc_amount": 4000, + "data": "0d00", + "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "fee": 0, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_index": 63, + "utxos_info": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d:0", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00004000" + }, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "block_time": 1729850816 + } + ], + "next_cursor": 557, + "result_count": 189 + }, + "/v2/addresses/mempool": { + "result": [ + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "memo": null, + "quantity": 10000, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "status": "valid", + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "CREDIT", + "params": { + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "XCP", + "block_index": 201, + "calling_function": "send", + "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "quantity": 10000, + "tx_index": 69, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "block_index": 201, + "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "quantity": 10000, + "tx_index": 69, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1729850850.9548645, + "btc_amount": 0, + "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "destination": "", + "fee": 10000, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69, + "utxos_info": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027:1", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1729850850.9548645 + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/balances": { + "result": [ + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "A95428956980101314", + "quantity": 100000000000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + }, + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "MYASSETA", + "quantity": 97999999980, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "980.00000000" + }, + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 82699937196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.99937000" + }, + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "TESTLOCKDESC", + "quantity": 9999990000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "99.99990000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/balances/": { + "result": [ + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 82699937196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.99937000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/credits": { + "result": [ + { + "block_index": 192, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 1000, + "calling_function": "cancel order", + "event": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_index": 58, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850796, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 184, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 1000, + "calling_function": "cancel order", + "event": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850698, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 161, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "A95428956980101314", + "quantity": 100000000000, + "calling_function": "issuance", + "event": "3a325e3de03c9a43fc50faf98987a6fe87bd0cc3fe706355a4bfb1d8da3a55e5", + "tx_index": 48, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850684, + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + }, + { + "block_index": 158, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "TESTLOCKDESC", + "quantity": 10000000000, + "calling_function": "issuance", + "event": "d0b4b9e01aa2c628346cb7dd0e399fc87063595a737e77e264e74d75edc5282f", + "tx_index": 45, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850663, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "100.00000000" + }, + { + "block_index": 152, + "address": null, + "asset": "MYASSETA", + "quantity": 1000000000, + "calling_function": "attach to utxo", + "event": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f", + "tx_index": 39, + "utxo": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f:1", + "utxo_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "confirmed": true, + "block_time": 1729850631, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000" + } + ], + "next_cursor": 44, + "result_count": 15 + }, + "/v2/addresses/
/debits": { + "result": [ + { + "block_index": 196, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "TESTLOCKDESC", + "quantity": 10000, + "action": "open dispenser", + "event": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_index": 62, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850812, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00010000" + }, + { + "block_index": 193, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 1000, + "action": "open order", + "event": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_index": 59, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850800, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 191, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 1000, + "action": "open order", + "event": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_index": 57, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850783, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 190, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_index": 56, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 190, + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "MYASSETA", + "quantity": 20, + "action": "mpma send", + "event": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_index": 56, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + } + ], + "next_cursor": 44, + "result_count": 21 + }, + "/v2/addresses/
/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/broadcasts": { + "result": [ + { + "tx_index": 24, + "tx_hash": "a271e5d21093222bb06408c7f0316479daa91351b4cd0ca7fc02937d53daf8e4", + "block_index": 137, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1729850564, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/burns": { + "result": [ + { + "tx_index": 0, + "tx_hash": "d7d98ae3149985e6345374fbbd988121178b423483b506fc5794b890bef5dda3", + "block_index": 112, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1729850470, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends": { + "result": [ + { + "tx_index": 56, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 56, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "MYASSETA", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 56, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "MYASSETA", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 39, + "tx_hash": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f", + "block_index": 152, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f:1", + "asset": "MYASSETA", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850631, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 36, + "tx_hash": "b5de3b4a59cdcad3b934271df950837ddcaa270e4c32305fcb7c5f7db6df7ad3", + "block_index": 149, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "87fb5435db15729019d290162db45cd405d65a62f7d6244f37565c79f737b452:1", + "asset": "MYASSETA", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850620, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/receives": { + "result": [ + { + "tx_index": 38, + "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "block_index": 151, + "source": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9:0", + "destination": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "asset": "MYASSETA", + "quantity": 500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850626, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends/": { + "result": [ + { + "tx_index": 56, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "MYASSETA", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 56, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "MYASSETA", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 39, + "tx_hash": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f", + "block_index": 152, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f:1", + "asset": "MYASSETA", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850631, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 36, + "tx_hash": "b5de3b4a59cdcad3b934271df950837ddcaa270e4c32305fcb7c5f7db6df7ad3", + "block_index": 149, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "87fb5435db15729019d290162db45cd405d65a62f7d6244f37565c79f737b452:1", + "asset": "MYASSETA", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850620, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/receives/": { + "result": [ + { + "tx_index": 38, + "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "block_index": 151, + "source": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9:0", + "destination": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "asset": "MYASSETA", + "quantity": 500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850626, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 62, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850816, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/addresses/
/dispenses/sends": { + "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850816, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "block_index": 140, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850575, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/receives": { + "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850816, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "block_index": 140, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850575, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/sends/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "block_index": 140, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850575, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispenses/receives/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "block_index": 140, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850575, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/sweeps": { + "result": [ + { + "tx_index": 60, + "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "block_index": 194, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1729850805, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/issuances": { + "result": [ + { + "tx_index": 48, + "tx_hash": "3a325e3de03c9a43fc50faf98987a6fe87bd0cc3fe706355a4bfb1d8da3a55e5", + "msg_index": 0, + "block_index": 161, + "asset": "A95428956980101314", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "A subnumeric asset", + "fee_paid": 0, + "status": "valid", + "asset_longname": "A95428959745315388.SUBNUMERIC", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850684, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 47, + "tx_hash": "7ae27b895f098742950f4610fcb9a08fb513f92640963d639115ff2123db9dfa", + "msg_index": 0, + "block_index": 160, + "asset": "TESTLOCKDESC", + "quantity": 0, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "lock_description", + "confirmed": true, + "block_time": 1729850679, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 46, + "tx_hash": "089369c1dee481bc5080c8ab2adf4f8c76db0532d6eea832bc0e5b998fc819c8", + "msg_index": 0, + "block_index": 159, + "asset": "A95428959745315388", + "quantity": 0, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850676, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 45, + "tx_hash": "d0b4b9e01aa2c628346cb7dd0e399fc87063595a737e77e264e74d75edc5282f", + "msg_index": 0, + "block_index": 158, + "asset": "TESTLOCKDESC", + "quantity": 10000000000, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850663, + "quantity_normalized": "100.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 42, + "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "msg_index": 0, + "block_index": 155, + "asset": "A95428958968845068", + "quantity": 0, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "MYASSETA.SUBMYASSETA", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1729850651, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 16, + "result_count": 21 + }, + "/v2/addresses/
/assets": { + "result": [ + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1729850663, + "last_issuance_block_time": 1729850679, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1729850616, + "last_issuance_block_time": 1729850616, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1729850556, + "last_issuance_block_time": 1729850561, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1729850542, + "last_issuance_block_time": 1729850553, + "supply_normalized": "0.00000019" + }, + { + "asset": "FAIRMINTB", + "asset_id": "1046814266083", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 126, + "last_issuance_block_index": 130, + "confirmed": true, + "first_issuance_block_time": 1729850524, + "last_issuance_block_time": 1729850538, + "supply_normalized": "0.00000000" + } + ], + "next_cursor": 2, + "result_count": 6 + }, + "/v2/addresses/
/assets/issued": { + "result": [ + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1729850663, + "last_issuance_block_time": 1729850679, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1729850616, + "last_issuance_block_time": 1729850616, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1729850556, + "last_issuance_block_time": 1729850561, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1729850542, + "last_issuance_block_time": 1729850553, + "supply_normalized": "0.00000019" + }, + { + "asset": "FAIRMINTB", + "asset_id": "1046814266083", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 126, + "last_issuance_block_index": 130, + "confirmed": true, + "first_issuance_block_time": 1729850524, + "last_issuance_block_time": 1729850538, + "supply_normalized": "0.00000000" + } + ], + "next_cursor": 2, + "result_count": 6 + }, + "/v2/addresses/
/assets/owned": { + "result": [ + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1729850663, + "last_issuance_block_time": 1729850679, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1729850616, + "last_issuance_block_time": 1729850616, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1729850556, + "last_issuance_block_time": 1729850561, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1729850542, + "last_issuance_block_time": 1729850553, + "supply_normalized": "0.00000019" + }, + { + "asset": "FAIRMINTB", + "asset_id": "1046814266083", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 0, + "description": "", + "first_issuance_block_index": 126, + "last_issuance_block_index": 130, + "confirmed": true, + "first_issuance_block_time": 1729850524, + "last_issuance_block_time": 1729850538, + "supply_normalized": "0.00000000" + } + ], + "next_cursor": 2, + "result_count": 6 + }, + "/v2/addresses/
/transactions": { + "result": [ + { + "tx_index": 62, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "block_index": 196, + "block_hash": "5dc2075d0940c78b09e44b1220841b8880685e2cc2bd468350d94b1442c5c19b", + "block_time": 1729850812, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "supported": true, + "utxos_info": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b:1", + "confirmed": true, + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 59, + "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "block_index": 193, + "block_hash": "33caddbbef8935092f32bd1b1f8ed37e89bead62a25ffbbf30b1f7f60bb0676d", + "block_time": 1729850800, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 58, + "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "block_index": 192, + "block_hash": "17e86f80cd8d3451f9f0c4f453eed8aacac760085c75799ee5930815fdebfb41", + "block_time": 1729850796, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "4658d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "supported": true, + "utxos_info": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a:1", + "confirmed": true, + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "status": "valid" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 57, + "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "block_index": 191, + "block_hash": "2f1d61e212a65a968e0535bc0b61998bf417480edd59b3d5639e25377aa62050", + "block_time": 1729850783, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 56, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "block_hash": "75af6c396a1d998861805f6688f291cefa94a4f4a8378213ccee3b5493616af6", + "block_time": 1729850778, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380291da9c4e57a7ea4919c208a3a92bcd597230dab80eb472b0f059e3530f96c78f820b8c9b3cf7ac97c8040802c79e893db48415ba76f3efb225d23934589400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "supported": true, + "utxos_info": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MYASSETA", + "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "quantity": 10, + "memo": null, + "memo_is_hex": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "quantity": 10, + "memo": null, + "memo_is_hex": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 51, + "result_count": 26 + }, + "/v2/addresses/
/dividends": { + "result": [ + { + "tx_index": 41, + "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "block_index": 154, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 40000, + "status": "valid", + "confirmed": true, + "block_time": 1729850637, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/orders": { + "result": [ + { + "tx_index": 49, + "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "block_index": 184, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1729850698, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 51, + "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "block_index": 188, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 206, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1729850771, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00010000", + "get_quantity_normalized": "0.00010000", + "get_remaining_normalized": "0.00005000", + "give_remaining_normalized": "0.00005000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "block_index": 192, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1729850796, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 59, + "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "block_index": 193, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 214, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1729850800, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/fairminters": { + "result": [ + { + "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1729850651, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "tx_index": 22, + "block_index": 135, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTD", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 50, + "quantity_by_price": 60, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 40, + "commission": 0, + "paid_quantity": 34, + "confirmed": true, + "block_time": 1729850556, + "price_normalized": "0.00000050", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000060", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "tx_index": 18, + "block_index": 131, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTC", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 19, + "commission": 0, + "paid_quantity": 5, + "confirmed": true, + "block_time": 1729850542, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000019", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000005" + }, + { + "tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "tx_index": 14, + "block_index": 130, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTB", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 130, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 300000000, + "commission": 0, + "paid_quantity": 300000000, + "confirmed": true, + "block_time": 1729850538, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "3.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "3.00000000" + }, + { + "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1729850519, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/fairmints": { + "result": [ + { + "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850561, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "63ce3c734541047cfdb7c0e069471c264cbb9fdd61fc4303cbd4f75fb06bc261", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850553, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "37910bded92b68219f029c515e329b1be51c2af85f0a50af0d40f1efff7ae29e", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850549, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000003", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "8c511faa5a2a0e8b3e1e61d1bcb65891c664b5a79a8ca8bcc3f669a0af612bd0", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850545, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000005", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "c697258e0737e981f3ead202d4f68e95418d4651ff5d44ebadffda11f5c3d9d1", + "tx_index": 15, + "block_index": 127, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850527, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "1.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "1.00000000" + }, + { + "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850512, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 6 + }, + "/v2/addresses/
/fairmints/": { + "result": [ + { + "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850512, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/compose/bet": { + "error": "['feed doesn\u2019t exist']" + }, + "/v2/addresses/
/compose/broadcast": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction": 0.05, + "text": "\"Hello, world!\"" + }, + "name": "broadcast", + "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985110, + "btc_fee": 14890, + "rawtransaction": "020000000001015f01e20ecd61ceb9c6479a64ff565666f4f3ae65393adfc3d6209855078d4aeb00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff0200000000000000002b6a297c622f5f288f7590f25e577b6430b04c7b5ca51f7066841391bc6b8aeb6cf8a56745a31a4ff91b97b0d6b7052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "broadcast", + "message_type_id": 30, + "message_data": { + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction_int": 5000000, + "text": "\"Hello, world!\"", + "status": "valid", + "fee_fraction_int_normalized": "0.05000000" + } + } + } + }, + "/v2/addresses/
/compose/btcpay": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01" + }, + "name": "btcpay", + "data": "434e5452505254590b55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "btc_in": 5000000000, + "btc_out": 3000, + "btc_change": 4999978049, + "btc_fee": 18951, + "rawtransaction": "020000000001019f6e65cac59da1021e85f3b9ca5a130aa473cade2cf2e95a2d9429db1725231e00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff03b80b000000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9600000000000000004b6a499ee6c4fa90b436a617a8526578c11eced2ec887c3b62858dad1677beb09d020f05b05d81f68d2bc318ce47b0b5d80b727e1bd1aef047b489c62b17aa0296efaf5e452e19ffc75d75f9419c052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "btcpay", + "message_type_id": 11, + "message_data": { + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/burn": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "quantity": 1000, + "overburn": false + }, + "name": "burn", + "data": null, + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999985156, + "btc_fee": 13844, + "rawtransaction": "0200000000010134f5a73f10f6e6ebd7dd50967b8b9ad842ab37b34446286655c69876d111cbf900000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000" + } + }, + "/v2/addresses/
/compose/cancel": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "offer_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e" + }, + "name": "cancel", + "data": "434e5452505254594626a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985110, + "btc_fee": 14890, + "rawtransaction": "0200000000010162fa678d1f005738808c038e01a03a8de6f6e582b001b3cad5fda03c3e8fb99000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff0200000000000000002b6a29738ad6bbb02abb010e9c810fafee42fa09db974117f1b4208f113e8cce59bc771c28d9d0f92de1962dd6b7052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/destroy": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 1000, + "tag": "\"bugs!\"", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "destroy", + "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985664, + "btc_fee": 14336, + "rawtransaction": "0200000000010117d217b90f3103c33b7a8196b234ef73f9ee80a3dffa0f0c891a03f5c30391d500000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000226a2038ce01ab7f94cab1c53b7bd4a299b41f5b3b46d30483d8caaee7f2df0d88301900ba052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "destroy", + "message_type_id": 110, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "tag": "22627567732122", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dispenser": { + "result": { + "params": { + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "status": 0, + "open_address": null, + "oracle_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + }, + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "btc_in": 4949934500, + "btc_out": 0, + "btc_change": 4949919549, + "btc_fee": 14951, + "rawtransaction": "02000000000101c4a579f7472a8f71fc4f7a9fe8e3c47fbf4e1ffaada164f38a6bb61e0a6612f801000000160014df2c1b5bcb6868289e28c03dca5b33ed1f8d864bffffffff0200000000000000002c6a2a8ba3e55a366b3882ab175f427b70192220df7f428cfe6aa35a37a0c5bd3cfb0e695fdca2ff552b322bcf3dc7092701000000160014df2c1b5bcb6868289e28c03dca5b33ed1f8d864b02000000000000", + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dividend": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "quantity_per_unit": 1, + "asset": "FAIRMINTA", + "dividend_asset": "XCP", + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "0.00000001" + }, + "name": "dividend", + "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985602, + "btc_fee": 14398, + "rawtransaction": "0200000000010135f84c0f90b4e7a75f71c696d72aea04d91d0454eacb61188c081baff4c8d46d00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000236a2183364320e7fbd27036e94fdfc5dca34ef5ae6f7ab28f69ffd4fd77ee9896c67b41c2b9052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "dividend", + "message_type_id": 50, + "message_data": { + "asset": "FAIRMINTA", + "quantity_per_unit": 1, + "dividend_asset": "XCP", + "status": "valid", + "quantity_per_unit_normalized": "0.00000001" + } + } + } + }, + "/v2/addresses/
/compose/issuance": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCPTEST", + "quantity": 1000, + "transfer_destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "lock": false, + "reset": false, + "description": null, + "quantity_normalized": "0.00001000" + }, + "name": "issuance", + "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999982964, + "btc_fee": 16490, + "rawtransaction": "02000000000101dfe6e585cc975fed17bc8b44213637548376c70e5ea7d7c5c66f77e70ce228f700000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff032202000000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec960000000000000000236a21e94abeebd5f1db9c9f7643bbf3682f05aa098f3a80a16ee21b60a43998b88a547174af052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 7136017375, + "asset": "XCPTEST", + "subasset_longname": null, + "quantity": 1000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "status": "valid", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/mpma": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset_dest_quant_list": [ + [ + "XCP", + "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + 1 + ], + [ + "MYASSETA", + "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + 2 + ] + ], + "memo": "\"Hello, world!\"", + "memo_is_hex": false + }, + "name": "mpma", + "data": "434e54525052545903000280a316fcca09b4f3cce88a33a9d6ddacac1f73ec9680291da9c4e57a7ea4919c208a3a92bcd597230dab8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "btc_in": 20000000000, + "btc_out": 2000, + "btc_change": 19999942870, + "btc_fee": 55130, + "rawtransaction": "020000000001045f01e20ecd61ceb9c6479a64ff565666f4f3ae65393adfc3d6209855078d4aeb00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff9f6e65cac59da1021e85f3b9ca5a130aa473cade2cf2e95a2d9429db1725231e00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff34f5a73f10f6e6ebd7dd50967b8b9ad842ab37b34446286655c69876d111cbf900000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff62fa678d1f005738808c038e01a03a8de6f6e582b001b3cad5fda03c3e8fb99000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff03e80300000000000069512102026f35592a8d739db5b3f1c015d3ffb0b15511ecbc8e426b7865946e221fe763210226dde5fd6894519accecc77003867fb033becba284b5c9582b633854f4057c4d21030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aee803000000000000695121020d6f35592a8d739db59086ade71c8d6d59dca51f7c7353d3669349c28e0094c82102ca4b2dd4753d957fb6926be19fa6f58aa1021c35a7b862d7092b5d38986a500521030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aed6e816a804000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000002000002000002000000000000", + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MYASSETA", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "quantity": 2, + "memo": "\"Hello, world!\"", + "memo_is_hex": false + }, + { + "asset": "XCP", + "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "quantity": 1, + "memo": "\"Hello, world!\"", + "memo_is_hex": false + } + ] + } + } + }, + "/v2/addresses/
/compose/order": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "FAIRMINTA", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + }, + "name": "order", + "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984495, + "btc_fee": 15505, + "rawtransaction": "0200000000010117d217b90f3103c33b7a8196b234ef73f9ee80a3dffa0f0c891a03f5c30391d500000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000356a3338ce01ab7f94cab1a13b7bd4a299b41f5b3b46d30483d8caaec590aa9941ef29ddc4384da6b950de1261ad04821110910b90266fb5052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "FAIRMINTA", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "status": "open", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + } + } + } + }, + "/v2/addresses/
/compose/send": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "quantity": 1000, + "memo": null, + "memo_is_hex": false, + "use_enhanced_send": true, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "send", + "data": "434e54525052545902000000000000000100000000000003e880291da9c4e57a7ea4919c208a3a92bcd597230dab", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984803, + "btc_fee": 15197, + "rawtransaction": "0200000000010135f84c0f90b4e7a75f71c696d72aea04d91d0454eacb61188c081baff4c8d46d00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000306a2e83364320e7fbd27006e94fdfc5dca34ef5ae6f7a413597eede7d5ef3315223013e4603594e180159f1dcf46a9843a3b6052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "memo": null, + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/sweep": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "flags": 7, + "memo": "FFFF" + }, + "name": "sweep", + "data": "434e5452505254590480291da9c4e57a7ea4919c208a3a92bcd597230dab07ffff", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985602, + "btc_fee": 14398, + "rawtransaction": "02000000000101dfe6e585cc975fed17bc8b44213637548376c70e5ea7d7c5c66f77e70ce228f700000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000236a21e94abeebd5f1db9c8df66aa65b059c840bad1ea6a02b54734fb4331a555dd8e7c2c2b9052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "sweep", + "message_type_id": 4, + "message_data": { + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "flags": 7, + "memo": "ffff" + } + } + } + }, + "/v2/addresses/
/compose/dispense": { + "result": { + "params": { + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "quantity": 1000 + }, + "name": "dispense", + "data": "434e5452505254590d00", + "btc_in": 4949854000, + "btc_out": 1000, + "btc_change": 4949837926, + "btc_fee": 15074, + "rawtransaction": "020000000001016d108af9f2ecee172fff023b38502f201e6ac6eb27bf1efa69e4712c4aca0c1c02000000160014291da9c4e57a7ea4919c208a3a92bcd597230dabffffffff03e80300000000000016001440802c79e893db48415ba76f3efb225d2393458900000000000000000c6a0a37036d912a9b44ad1c7c6688082701000000160014291da9c4e57a7ea4919c208a3a92bcd597230dab02000000000000", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + } + } + }, + "/v2/addresses/
/compose/fairminter": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": 0.0, + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + "name": "fairminter", + "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984741, + "btc_fee": 15259, + "rawtransaction": "02000000000101c630b17989b1789ba26c49054d446cf3fd25810299ff92491c88a7b6ff3235fc00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000316a2fd5a572394e8be39998a6356d99745cdf6fd60462f6db58350e41f9a9197775cebd9ea9fece966fde74edcf011aa55965b6052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "fairminter", + "message_type_id": 90, + "message_data": { + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + } + } + }, + "/v2/addresses/
/compose/fairmint": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTC", + "quantity": 1, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000001" + }, + "name": "fairmint", + "data": "434e5452505254595b464149524d494e54437c31", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986402, + "btc_fee": 13598, + "rawtransaction": "02000000000101fd8c456f3a30e0c2df5646f7929fbb8c320152ce1766496d95f4e2541e66aa6700000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000166a14728edf2c887212347abd7be208722fc873a05c50e2bc052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "unpacked_data": { + "message_type": "fairmint", + "message_type_id": 91, + "message_data": { + "asset": "FAIRMINTC", + "quantity": 1, + "quantity_normalized": "0.00000001" + } + } + } + }, + "/v2/addresses/
/compose/attach": { + "result": { + "params": { + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b:1", + "asset": "XCP", + "quantity": 1000, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "utxo", + "data": "434e5452505254596462637274317135767430656a73666b6e657565367932787735616468647634733068386d796b787536736e747c326565363536336230626137323761326536623537396461363630383465386631613536633566623064613939333638636565613433356265363739653237623a317c5843507c31303030", + "btc_in": 30000000000, + "btc_out": 3000, + "btc_change": 29999914612, + "btc_fee": 82388, + "rawtransaction": "0200000000010605593f86b38951fc991627b9e4c253f9aecfcec6217feafff3c8ba571880312200000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff4cd14fc52247a236c4886889a5434071626af6f5f616a4dedd0609424adcf68d00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffffcbf19debc42e554d9602800fbdf3605e4d34e467c655244c49413b4a86e7b22900000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff92303adbccb85931a488284abc068e345ac8d0436b1c721183180584f25a21d500000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffffbdb4528ef69810c1b03ac84c64a0d41e8683991b1a96419f7a958f15f03d18ee00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff1dc7714909e1c517d89d69e299ae36183dc329bfa0b5ad6324c3d2064037b15f00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff04e80300000000000069512102b2450b331297f67aa5c7acf5adcc80795b2eb47f1f617f4353fec044f06c0bfd210218a81dc25f3495674dc076c05be1a9cb05ee65dc77755daa21d05b8c35b0ef5921030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aee80300000000000069512102b2450b331297f67aa5c1fef4be8f833f0f6aa579183e3b1c5cf19307a56246b021034fe80cc65f65cb600e9267c057b8fd8b5da02889617e48e220805cdf36b1e56421030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aee8030000000000006951210398450b331297f67aa5c6fca1bd828074361b90334b3b3c153890a531955a72cb21032ad06af73e50fd033bf405f033d9c4b26e9610ea041b29d613b53eba0086dcb021030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653ae745e22fc06000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000002000002000002000002000002000000000000", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 100, + "message_data": { + "error": "Unknown message type" + } + } + } + }, + "/v2/utxos//compose/detach": { + "result": { + "params": { + "source": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 1000, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "utxo", + "data": "434e54525052545964373932613936613561363765363162656132643733303834353738653165656133336639633763376566313236646135326266333232636664363030636536643a307c62637274317135767430656a73666b6e657565367932787735616468647634733068386d796b787536736e747c5843507c31303030", + "btc_in": 4950080000, + "btc_out": 3000, + "btc_change": 4950028023, + "btc_fee": 48977, + "rawtransaction": "020000000001030765a7ab8ff63d4a750be2f0e3578aff985cd653aa5bd143973ca8983d09f90901000000160014ded290140f13e50b98d2ac0374e07e04a3309a37ffffffff6a11cea79631cdbb858bbb566feb7cc1e5cacf33dd4d2fd663e8d976cad59d8600000000160014ded290140f13e50b98d2ac0374e07e04a3309a37fffffffff832233bdcd54eb34e3efc27f39744609afc6a04845d2f5a1e7f3473e6f77a0401000000160014ded290140f13e50b98d2ac0374e07e04a3309a37ffffffff04e80300000000000069512103c51710ee20064c547f6a9d93009d698e3672ca9a4de6b3a3984a69dd2850ec8e2103975968e2a3b91ac48ea94623d7dd80bf3b5c1cf664838c86446d18d0333c66e721022316b7e1e9af9df6f57e24dfe54c3075440522bcfe1a21b2aaa2cef0f6a630c253aee80300000000000069512102c51710ee20064c547f3c98c9549866886724ce9a1eb9b5ee984c7a9b7d16ea992102d1156cb2fef2199e85a95275d2c28ba47b0a4af76ad6c884533c45da3c233eb121022316b7e1e9af9df6f57e24dfe54c3075440522bcfe1a21b2aaa2cef0f6a630c253aee80300000000000069512102ef1710ee20064c547f76df9c419224c40f04fbd04bb3b5a2fa2f08ef4c67df7f2102a7615cd794817ff5ebcc2710e4bbb9dc0c3f2b9302b2beb0200c2de2515a552a21022316b7e1e9af9df6f57e24dfe54c3075440522bcfe1a21b2aaa2cef0f6a630c253aef76e0b2701000000160014ded290140f13e50b98d2ac0374e07e04a3309a3702000002000002000000000000", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 100, + "message_data": { + "error": "Unknown message type" + } + } + } + }, + "/v2/assets": { + "result": [ + { + "asset": "UTXOASSET", + "asset_id": "4336417415635", + "asset_longname": null, + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "owner": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset", + "first_issuance_block_index": 198, + "last_issuance_block_index": 198, + "confirmed": true, + "first_issuance_block_time": 1729850819, + "last_issuance_block_time": 1729850819, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1729850663, + "last_issuance_block_time": 1729850679, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETB", + "asset_id": "103804245871", + "asset_longname": null, + "issuer": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "owner": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 157, + "last_issuance_block_index": 157, + "confirmed": true, + "first_issuance_block_time": 1729850659, + "last_issuance_block_time": 1729850659, + "supply_normalized": "1000.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1729850616, + "last_issuance_block_time": 1729850616, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1729850556, + "last_issuance_block_time": 1729850561, + "supply_normalized": "0.00000040" + } + ], + "next_cursor": 4, + "result_count": 9 + }, + "/v2/assets/": { + "result": { + "asset": "FAIRMINTA", + "asset_id": "1046814266082", + "asset_longname": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "", + "first_issuance_block_index": 122, + "last_issuance_block_index": 125, + "confirmed": true, + "first_issuance_block_time": 1729850509, + "last_issuance_block_time": 1729850519, + "supply_normalized": "100.00000000" + } + }, + "/v2/assets//balances": { + "result": [ + { + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "utxo": null, + "utxo_address": null, + "asset": "FAIRMINTA", + "quantity": 9500000000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "95.00000000" + }, + { + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "utxo": null, + "utxo_address": null, + "asset": "FAIRMINTA", + "quantity": 500000000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/assets//balances/
": { + "result": [ + { + "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "quantity": 82699937196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.99937000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//orders": { + "result": [ + { + "tx_index": 49, + "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "block_index": 184, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1729850698, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 51, + "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "block_index": 188, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 206, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1729850771, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00010000", + "get_quantity_normalized": "0.00010000", + "get_remaining_normalized": "0.00005000", + "give_remaining_normalized": "0.00005000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "block_index": 192, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1729850796, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 59, + "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "block_index": 193, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 214, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1729850800, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 52, + "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "block_index": 187, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "block_time": 1729850768, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 54, + "result_count": 7 + }, + "/v2/assets//matches": { + "result": [ + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 54, + "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1729850771, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 52, + "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1729850768, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "tx0_index": 49, + "tx0_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 50, + "tx1_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 162, + "tx1_block_index": 163, + "block_index": 184, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 183, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1729850698, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/assets//credits": { + "result": [ + { + "block_index": 194, + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "sweep", + "event": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_index": 60, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850805, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 125, + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "FAIRMINTA", + "quantity": 9000000000, + "calling_function": "fairmint", + "event": "5995abf06d1fac2feff561f2aa0e119f80e426cc3b7869eef237ea5ec8db72a7", + "tx_index": 13, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850519, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "90.00000000" + }, + { + "block_index": 124, + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "unescrowed fairmint", + "event": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "tx_index": 12, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850516, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 124, + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "unescrowed fairmint", + "event": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_index": 11, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850516, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 124, + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "escrowed fairmint", + "event": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "tx_index": 12, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850516, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": 12, + "result_count": 6 + }, + "/v2/assets//debits": { + "result": [ + { + "block_index": 201, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "action": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 198, + "address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "asset": "XCP", + "quantity": 50000000, + "action": "issuance fee", + "event": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_index": 64, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850819, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.50000000" + }, + { + "block_index": 195, + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "quantity": 1, + "action": "destroy", + "event": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "tx_index": 61, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850809, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000001" + }, + { + "block_index": 194, + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "XCP", + "quantity": 74499387833, + "action": "sweep", + "event": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_index": 60, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850805, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "744.99388000" + }, + { + "block_index": 194, + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "XCP", + "quantity": 600000, + "action": "sweep fee", + "event": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_index": 60, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850805, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00600000" + } + ], + "next_cursor": 49, + "result_count": 40 + }, + "/v2/assets//dividends": { + "result": [ + { + "tx_index": 41, + "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "block_index": 154, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 40000, + "status": "valid", + "confirmed": true, + "block_time": 1729850637, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//issuances": { + "result": [ + { + "tx_index": 13, + "tx_hash": "5995abf06d1fac2feff561f2aa0e119f80e426cc3b7869eef237ea5ec8db72a7", + "msg_index": 0, + "block_index": 125, + "asset": "FAIRMINTA", + "quantity": 9000000000, + "divisible": true, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1729850519, + "quantity_normalized": "90.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 12, + "tx_hash": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "msg_index": 0, + "block_index": 124, + "asset": "FAIRMINTA", + "quantity": 500000000, + "divisible": true, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1729850516, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 11, + "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "msg_index": 0, + "block_index": 123, + "asset": "FAIRMINTA", + "quantity": 500000000, + "divisible": true, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1729850512, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 10, + "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "msg_index": 0, + "block_index": 122, + "asset": "FAIRMINTA", + "quantity": 0, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1729850509, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//sends": { + "result": [ + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 56, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850778, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 55, + "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0", + "block_index": 189, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "quantity": 10000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850775, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 44, + "tx_hash": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489", + "block_index": 157, + "source": "047af7e673347f1e5a2f5d84046afc9a604497f327fc3e4eb34ed5dc3b2332f8:0", + "destination": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850659, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 43, + "tx_hash": "047af7e673347f1e5a2f5d84046afc9a604497f327fc3e4eb34ed5dc3b2332f8", + "block_index": 156, + "source": "d25eb60aa5a4aa805a1d652ee8e63404d2df9ed8401720787c6beae09eec316f:0", + "destination": "047af7e673347f1e5a2f5d84046afc9a604497f327fc3e4eb34ed5dc3b2332f8:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850654, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/assets//dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 29, + "tx_hash": "9ab8c44122844663eabc411ff3443b2025b4d1faa256a7497c31052d1f07e3eb", + "block_index": 142, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "dispense_count": 0, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850583, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 30, + "tx_hash": "2b483dd9a65666f5548c936d667508c8b3edaf1a472c29a7999c2755abecc717", + "block_index": 150, + "source": "mvfH8EzCtwp8Ju3Xq6hGzBsRbfjEeHPeoo", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "9e1effc8449b42dd438262bc0b50947f9a5e585a9e65dd7894b0247a39de0f36", + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "close_block_index": 150, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850623, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 33, + "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//dispensers/
": { + "result": { + "tx_index": 26, + "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/assets//holders": { + "result": [ + { + "asset": "FAIRMINTA", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "quantity": 0, + "escrow": null, + "cursor_id": "balances_12", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "quantity": 500000000, + "escrow": null, + "cursor_id": "balances_13", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "quantity": 0, + "escrow": null, + "cursor_id": "balances_14", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "quantity": 9500000000, + "escrow": null, + "cursor_id": "balances_15", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "95.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//dispenses": { + "result": [ + { + "tx_index": 68, + "dispense_index": 0, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "869dd5ca76d9e863d62f4ddd33cfcae5c17ceb6f56bb8b85bbcd3196a7ce116a", + "block_index": 147, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1729850613, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "block_index": 140, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850575, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//subassets": { + "result": [ + { + "asset": "A95428959745315388", + "asset_id": "95428959745315388", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false, + "supply": 0, + "description": "Test Locking Description", + "first_issuance_block_index": 159, + "last_issuance_block_index": 159, + "confirmed": true, + "first_issuance_block_time": 1729850676, + "last_issuance_block_time": 1729850676, + "supply_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//fairminters": { + "result": [ + { + "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1729850519, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//fairmints": { + "result": [ + { + "tx_hash": "5995abf06d1fac2feff561f2aa0e119f80e426cc3b7869eef237ea5ec8db72a7", + "tx_index": 13, + "block_index": 125, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "asset": "FAIRMINTA", + "earn_quantity": 9000000000, + "paid_quantity": 9000000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850519, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "90.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "90.00000000" + }, + { + "tx_hash": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "tx_index": 12, + "block_index": 124, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850516, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + }, + { + "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850512, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/assets//fairmints/
": { + "result": [ + { + "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850512, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders": { + "result": [ + { + "tx_index": 49, + "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "block_index": 184, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1729850698, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 52, + "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "block_index": 187, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "block_time": 1729850768, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 51, + "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "block_index": 188, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 206, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1729850771, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00010000", + "get_quantity_normalized": "0.00010000", + "get_remaining_normalized": "0.00005000", + "give_remaining_normalized": "0.00005000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 54, + "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "block_index": 188, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 209, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1729850771, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "block_index": 192, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1729850796, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 59, + "result_count": 7 + }, + "/v2/orders/": { + "result": { + "tx_index": 59, + "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "block_index": 193, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 214, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1729850800, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + }, + "/v2/orders//matches": { + "result": [ + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 54, + "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1729850771, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 52, + "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1729850768, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/orders//btcpays": { + "result": [ + { + "tx_index": 53, + "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "block_index": 187, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "btc_amount": 2000, + "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "status": "valid", + "confirmed": true, + "block_time": 1729850768, + "btc_amount_normalized": "0.00002000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders//": { + "result": [ + { + "tx_index": 52, + "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "block_index": 187, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1729850768, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 54, + "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "block_index": 188, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 209, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1729850771, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 49, + "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "block_index": 184, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1729850698, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 51, + "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "block_index": 188, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 206, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1729850771, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00010000", + "get_quantity_normalized": "0.00010000", + "get_remaining_normalized": "0.00005000", + "give_remaining_normalized": "0.00005000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "block_index": 192, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1729850796, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 59, + "result_count": 7 + }, + "/v2/orders///matches": { + "result": [ + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 54, + "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1729850771, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 52, + "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1729850768, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "tx0_index": 49, + "tx0_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 50, + "tx1_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 162, + "tx1_block_index": 163, + "block_index": 184, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 183, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1729850698, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/order_matches": { + "result": [ + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 54, + "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1729850771, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx0_index": 51, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 52, + "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1729850768, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "tx0_index": 49, + "tx0_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_index": 50, + "tx1_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 162, + "tx1_block_index": 163, + "block_index": 184, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 183, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1729850698, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets/": { + "error": "Not found" + }, + "/v2/bets//matches": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets//resolutions": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/burns": { + "result": [ + { + "tx_index": 9, + "tx_hash": "19ac57f341a56378548a660b5982a7937163b3ba0509160d379c719ef5778b72", + "block_index": 121, + "source": "bcrt1qyy00zkcnzhrwx3vkjasfktxa6954zr7aw8na5g", + "burned": 50000000, + "earned": 74999996667, + "status": "valid", + "confirmed": true, + "block_time": 1729850504, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 8, + "tx_hash": "2969e52007c8e874e8554a7ef478d800d266c94492d420fd72b84ff23087f081", + "block_index": 120, + "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "burned": 50000000, + "earned": 74999996833, + "status": "valid", + "confirmed": true, + "block_time": 1729850500, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 7, + "tx_hash": "2a6a284564f83882bddf0cbedc47b86de1d7ddd9b2d9c1bc3cd2b5193a39f1a9", + "block_index": 119, + "source": "bcrt1qwwnd2kd9kldtrvser645xc45f0vf9d95qcxyjp", + "burned": 50000000, + "earned": 74999997000, + "status": "valid", + "confirmed": true, + "block_time": 1729850497, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 6, + "tx_hash": "b126033e8991f5a8c2971430ff299e3f23554d9c26537a1ae489ff42f712045b", + "block_index": 118, + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "burned": 50000000, + "earned": 74999997167, + "status": "valid", + "confirmed": true, + "block_time": 1729850493, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 5, + "tx_hash": "d7acbf2824a108f9f79c9c624de019b3a5c2f65f6f944ee761ddbef1fdce775c", + "block_index": 117, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "burned": 50000000, + "earned": 74999997333, + "status": "valid", + "confirmed": true, + "block_time": 1729850489, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + } + ], + "next_cursor": 4, + "result_count": 10 + }, + "/v2/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 29, + "tx_hash": "9ab8c44122844663eabc411ff3443b2025b4d1faa256a7497c31052d1f07e3eb", + "block_index": 142, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "dispense_count": 0, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850583, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 30, + "tx_hash": "2b483dd9a65666f5548c936d667508c8b3edaf1a472c29a7999c2755abecc717", + "block_index": 150, + "source": "mvfH8EzCtwp8Ju3Xq6hGzBsRbfjEeHPeoo", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "9e1effc8449b42dd438262bc0b50947f9a5e585a9e65dd7894b0247a39de0f36", + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "close_block_index": 150, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850623, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 62, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850816, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 33, + "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/dispensers//dispenses": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "block_index": 140, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850575, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/dividends": { + "result": [ + { + "tx_index": 41, + "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "block_index": 154, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 40000, + "status": "valid", + "confirmed": true, + "block_time": 1729850637, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/dividends/": { + "result": { + "tx_index": 41, + "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "block_index": 154, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 40000, + "status": "valid", + "confirmed": true, + "block_time": 1729850637, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + } + }, + "/v2/dividends//credits": { + "result": [ + { + "block_index": 154, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "calling_function": "dividend", + "event": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_index": 41, + "utxo": "d25eb60aa5a4aa805a1d652ee8e63404d2df9ed8401720787c6beae09eec316f:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "confirmed": true, + "block_time": 1729850637, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 154, + "address": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "asset": "XCP", + "quantity": 500000000, + "calling_function": "dividend", + "event": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_index": 41, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1729850637, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/events": { + "result": [ + { + "event_index": 603, + "event": "BLOCK_PARSED", + "params": { + "block_index": 201, + "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", + "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "transaction_count": 1, + "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", + "block_time": 1729850846 + }, + "tx_hash": null, + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 602, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68 + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 601, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 201, + "btc_amount": 1000, + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 600, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "status": 0, + "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 598, + "result_count": 604 + }, + "/v2/events/": { + "result": { + "event_index": 603, + "event": "BLOCK_PARSED", + "params": { + "block_index": 201, + "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", + "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "transaction_count": 1, + "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", + "block_time": 1729850846 + }, + "tx_hash": null, + "block_index": 201, + "block_time": 1729850846 + } + }, + "/v2/events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 11 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 54 + }, + { + "event": "SWEEP", + "event_count": 1 + }, + { + "event": "REFILL_DISPENSER", + "event_count": 1 + }, + { + "event": "ORDER_UPDATE", + "event_count": 11 + } + ], + "next_cursor": "ORDER_MATCH_UPDATE", + "result_count": 36 + }, + "/v2/events/": { + "result": [ + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 597, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 594, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 201, + "calling_function": "utxo move", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + }, + { + "event_index": 587, + "event": "CREDIT", + "params": { + "address": null, + "asset": "UTXOASSET", + "block_index": 200, + "calling_function": "utxo move", + "event": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "quantity": 1000000000, + "tx_index": 67, + "utxo": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8:0", + "utxo_address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "block_time": 1729850833, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000" + }, + "tx_hash": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "block_index": 200, + "block_time": 1729850833 + }, + { + "event_index": 584, + "event": "CREDIT", + "params": { + "address": null, + "asset": "UTXOASSET", + "block_index": 200, + "calling_function": "utxo move", + "event": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", + "quantity": 1000000000, + "tx_index": 66, + "utxo": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0", + "utxo_address": "bcrt1qwwnd2kd9kldtrvser645xc45f0vf9d95qcxyjp", + "block_time": 1729850833, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000" + }, + "tx_hash": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", + "block_index": 200, + "block_time": 1729850833 + } + ], + "next_cursor": 575, + "result_count": 76 + }, + "/v2/events//count": { + "result": { + "event": "CREDIT", + "event_count": 76 + } + }, + "/v2/dispenses": { + "result": [ + { + "tx_index": 68, + "dispense_index": 0, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850816, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "869dd5ca76d9e863d62f4ddd33cfcae5c17ceb6f56bb8b85bbcd3196a7ce116a", + "block_index": 147, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 201, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "last_status_tx_hash": null, + "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1729850613, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850579, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "block_index": 140, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1729850575, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/sends": { + "result": [ + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 68, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "asset": "MYASSETA", + "quantity": 1500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850846, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 67, + "tx_hash": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "block_index": 200, + "source": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0", + "destination": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8:0", + "asset": "UTXOASSET", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850833, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 66, + "tx_hash": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", + "block_index": 200, + "source": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a:1", + "destination": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0", + "asset": "UTXOASSET", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850833, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 65, + "tx_hash": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a", + "block_index": 199, + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "destination": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a:1", + "asset": "UTXOASSET", + "quantity": 1000000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1729850823, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 14, + "result_count": 19 + }, + "/v2/issuances": { + "result": [ + { + "tx_index": 64, + "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "msg_index": 0, + "block_index": 198, + "asset": "UTXOASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850819, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 48, + "tx_hash": "3a325e3de03c9a43fc50faf98987a6fe87bd0cc3fe706355a4bfb1d8da3a55e5", + "msg_index": 0, + "block_index": 161, + "asset": "A95428956980101314", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "A subnumeric asset", + "fee_paid": 0, + "status": "valid", + "asset_longname": "A95428959745315388.SUBNUMERIC", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850684, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 47, + "tx_hash": "7ae27b895f098742950f4610fcb9a08fb513f92640963d639115ff2123db9dfa", + "msg_index": 0, + "block_index": 160, + "asset": "TESTLOCKDESC", + "quantity": 0, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "lock_description", + "confirmed": true, + "block_time": 1729850679, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 46, + "tx_hash": "089369c1dee481bc5080c8ab2adf4f8c76db0532d6eea832bc0e5b998fc819c8", + "msg_index": 0, + "block_index": 159, + "asset": "A95428959745315388", + "quantity": 0, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850676, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 45, + "tx_hash": "d0b4b9e01aa2c628346cb7dd0e399fc87063595a737e77e264e74d75edc5282f", + "msg_index": 0, + "block_index": 158, + "asset": "TESTLOCKDESC", + "quantity": 10000000000, + "divisible": true, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850663, + "quantity_normalized": "100.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": 18, + "result_count": 23 + }, + "/v2/issuances/": { + "result": { + "tx_index": 64, + "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "msg_index": 0, + "block_index": 198, + "asset": "UTXOASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729850819, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + } + }, + "/v2/sweeps": { + "result": [ + { + "tx_index": 60, + "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "block_index": 194, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1729850805, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/sweeps/": { + "result": [ + { + "tx_index": 60, + "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "block_index": 194, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1729850805, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/broadcasts": { + "result": [ + { + "tx_index": 25, + "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "block_index": 138, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1729850567, + "fee_fraction_int_normalized": "0.00000000" + }, + { + "tx_index": 24, + "tx_hash": "a271e5d21093222bb06408c7f0316479daa91351b4cd0ca7fc02937d53daf8e4", + "block_index": 137, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1729850564, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/broadcasts/": { + "result": { + "tx_index": 25, + "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "block_index": 138, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1729850567, + "fee_fraction_int_normalized": "0.00000000" + } + }, + "/v2/fairminters": { + "result": [ + { + "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1729850651, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "tx_index": 22, + "block_index": 135, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTD", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 50, + "quantity_by_price": 60, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 40, + "commission": 0, + "paid_quantity": 34, + "confirmed": true, + "block_time": 1729850556, + "price_normalized": "0.00000050", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000060", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "tx_index": 18, + "block_index": 131, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTC", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 19, + "commission": 0, + "paid_quantity": 5, + "confirmed": true, + "block_time": 1729850542, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000019", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000005" + }, + { + "tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "tx_index": 14, + "block_index": 130, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTB", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 130, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 300000000, + "commission": 0, + "paid_quantity": 300000000, + "confirmed": true, + "block_time": 1729850538, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "3.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "3.00000000" + }, + { + "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1729850519, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/fairmints": { + "result": [ + { + "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850561, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "63ce3c734541047cfdb7c0e069471c264cbb9fdd61fc4303cbd4f75fb06bc261", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850553, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "37910bded92b68219f029c515e329b1be51c2af85f0a50af0d40f1efff7ae29e", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850549, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000003", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "8c511faa5a2a0e8b3e1e61d1bcb65891c664b5a79a8ca8bcc3f669a0af612bd0", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850545, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000005", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "d17ef6321b142aa2f5c375767f91f4478823990548d9d4651ef2bff529a811fb", + "tx_index": 17, + "block_index": 129, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "fairminter_tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850535, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "1.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "1.00000000" + } + ], + "next_cursor": 5, + "result_count": 10 + }, + "/v2/fairmints/": { + "result": { + "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1729850561, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + }, + "/v2/bitcoin/addresses/utxos": { + "result": [ + { + "vout": 1, + "height": 200, + "value": 4949934500, + "confirmations": 2, + "amount": 49.499345, + "txid": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", + "address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl" + }, + { + "vout": 0, + "height": 200, + "value": 5460, + "confirmations": 2, + "amount": 5.46e-05, + "txid": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl" + }, + { + "vout": 2, + "height": 157, + "value": 100000, + "confirmations": 45, + "amount": 0.001, + "txid": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489", + "address": "bcrt1qwwnd2kd9kldtrvser645xc45f0vf9d95qcxyjp" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions": { + "result": [ + { + "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01" + }, + { + "tx_hash": "fed339fb20854750cdfa4eb1ecf8f3a3810f6c4cda00fa5d2449f0331f9c0c31" + }, + { + "tx_hash": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150" + }, + { + "tx_hash": "87fb5435db15729019d290162db45cd405d65a62f7d6244f37565c79f737b452" + }, + { + "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0" + }, + { + "tx_hash": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9" + }, + { + "tx_hash": "0f4986a984e328828f33ccbac8369a3e45964d454f4c72395b08a41326ac35da" + }, + { + "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions/oldest": { + "result": { + "block_index": 4, + "tx_hash": "9149fa8338fca299ef1a1c9755aa6625db519bfb9cee4730ecb14ab7c7c7b3e2" + } + }, + "/v2/bitcoin/addresses/
/utxos": { + "result": [ + { + "vout": 1, + "height": 200, + "value": 4949934500, + "confirmations": 2, + "amount": 49.499345, + "txid": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4" + }, + { + "vout": 0, + "height": 200, + "value": 5460, + "confirmations": 2, + "amount": 5.46e-05, + "txid": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/pubkey": { + "result": "030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d6" + }, + "/v2/bitcoin/transactions/": { + "result": "020000000001018964dc58bd72f60c856d20ac48e099ae298c494f9fdf949c4834ca10dc8029cb0100000000ffffffff03e803000000000000160014ded290140f13e50b98d2ac0374e07e04a3309a3700000000000000000c6a0a20cf5e6976674b0e61c3dced0827010000001600142177c7e2f5e04bda4da685d80a7abbd091f75a1f024730440220525ee6921ecc52f42e69485fbcf539037e2ebad077280a163c2f9b18734cc549022067954ba9c8a39bc664fe98fa61c027860b4fd167231b8720a6dedd87f7a2603501210369db83b02344e1e52dc19ddc848d3ce76b61483606f4cc6548d59963e7c1391d00000000" + }, + "/v2/bitcoin/estimatesmartfee": { + "result": 61530 + }, + "/v2/bitcoin/getmempoolinfo": { + "result": { + "loaded": true, + "size": 1, + "bytes": 167, + "usage": 1232, + "total_fee": 0.0001, + "maxmempool": 300000000, + "mempoolminfee": 0.0, + "minrelaytxfee": 0.0, + "incrementalrelayfee": 1e-05, + "unbroadcastcount": 1, + "fullrbf": false + } + }, + "/v2/mempool/events": { + "result": [ + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69 + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "memo": null, + "quantity": 10000, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "status": "valid", + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "CREDIT", + "params": { + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "XCP", + "block_index": 201, + "calling_function": "send", + "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "quantity": 10000, + "tx_index": 69, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "block_index": 201, + "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "quantity": 10000, + "tx_index": 69, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1729850850.9548645, + "btc_amount": 0, + "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "destination": "", + "fee": 10000, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69, + "utxos_info": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027:1", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1729850850.9548645 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/mempool/events/": { + "result": [ + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "CREDIT", + "params": { + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "XCP", + "block_index": 201, + "calling_function": "send", + "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "quantity": 10000, + "tx_index": 69, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/mempool/transactions//events": { + "result": [ + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69 + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "memo": null, + "quantity": 10000, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "status": "valid", + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "CREDIT", + "params": { + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "asset": "XCP", + "block_index": 201, + "calling_function": "send", + "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "quantity": 10000, + "tx_index": 69, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "asset": "XCP", + "block_index": 201, + "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "quantity": 10000, + "tx_index": 69, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1729850850.9548645 + }, + { + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1729850850.9548645, + "btc_amount": 0, + "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "destination": "", + "fee": 10000, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_index": 69, + "utxos_info": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027:1", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1729850850.9548645 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/healthz": { + "result": { + "status": "Healthy" + } + }, + "/healthz": { + "result": { + "status": "Healthy" + } + }, + "/v2/events/NEW_BLOCK": { + "result": [ + { + "event_index": 590, + "event": "NEW_BLOCK", + "params": { + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_index": 201, + "block_time": 1729850846, + "difficulty": 545259519, + "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca" + }, + "tx_hash": null, + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 580, + "result_count": 101 + }, + "/v2/events/NEW_TRANSACTION": { + "result": [ + { + "event_index": 591, + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_index": 201, + "block_time": 1729850846, + "btc_amount": 1000, + "data": "0d00", + "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "fee": 0, + "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 582, + "result_count": 69 + }, + "/v2/events/NEW_TRANSACTION_OUTPUT": { + "result": [ + { + "event_index": 592, + "event": "NEW_TRANSACTION_OUTPUT", + "params": { + "block_index": 201, + "btc_amount": 1000, + "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "out_index": 0, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 558, + "result_count": 5 + }, + "/v2/events/BLOCK_PARSED": { + "result": [ + { + "event_index": 603, + "event": "BLOCK_PARSED", + "params": { + "block_index": 201, + "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", + "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "transaction_count": 1, + "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", + "block_time": 1729850846 + }, + "tx_hash": null, + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 589, + "result_count": 101 + }, + "/v2/events/TRANSACTION_PARSED": { + "result": [ + { + "event_index": 602, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68 + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 578, + "result_count": 54 + }, + "/v2/events/DEBIT": { + "result": [ + { + "event_index": 596, + "event": "DEBIT", + "params": { + "action": "utxo move", + "address": null, + "asset": "XCP", + "block_index": 201, + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 1500000000, + "tx_index": 68, + "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 593, + "result_count": 61 + }, + "/v2/events/CREDIT": { + "result": [ + { + "event_index": 599, + "event": "CREDIT", + "params": { + "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "asset": "XCP", + "block_index": 201, + "calling_function": "dispense", + "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "quantity": 66, + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 597, + "result_count": 76 + }, + "/v2/events/ENHANCED_SEND": { + "result": [ + { + "event_index": 498, + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 189, + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "memo": null, + "quantity": 10000, + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "status": "valid", + "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0", + "tx_index": 55, + "block_time": 1729850775, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0", + "block_index": 189, + "block_time": 1729850775 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/MPMA_SEND": { + "result": [ + { + "event_index": 510, + "event": "MPMA_SEND", + "params": { + "asset": "XCP", + "block_index": 190, + "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "memo": null, + "msg_index": 2, + "quantity": 10, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "status": "valid", + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_index": 56, + "block_time": 1729850778, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "block_index": 190, + "block_time": 1729850778 + } + ], + "next_cursor": 509, + "result_count": 3 + }, + "/v2/events/SEND": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_TRANSFER": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/SWEEP": { + "result": [ + { + "event_index": 541, + "event": "SWEEP", + "params": { + "block_index": 194, + "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "fee_paid": 600000, + "flags": 1, + "memo": "sweep my assets", + "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "status": "valid", + "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_index": 60, + "block_time": 1729850805, + "fee_paid_normalized": "0.00600000" + }, + "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "block_index": 194, + "block_time": 1729850805 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ASSET_DIVIDEND": { + "result": [ + { + "event_index": 337, + "event": "ASSET_DIVIDEND", + "params": { + "asset": "MYASSETA", + "block_index": 154, + "dividend_asset": "XCP", + "fee_paid": 40000, + "quantity_per_unit": 100000000, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "status": "valid", + "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_index": 41, + "block_time": 1729850637, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + }, + "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "block_index": 154, + "block_time": 1729850637 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/RESET_ISSUANCE": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_CREATION": { + "result": [ + { + "event_index": 567, + "event": "ASSET_CREATION", + "params": { + "asset_id": "4336417415635", + "asset_longname": null, + "asset_name": "UTXOASSET", + "block_index": 198, + "block_time": 1729850819 + }, + "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "block_index": 198, + "block_time": 1729850819 + } + ], + "next_cursor": 394, + "result_count": 11 + }, + "/v2/events/ASSET_ISSUANCE": { + "result": [ + { + "event_index": 568, + "event": "ASSET_ISSUANCE", + "params": { + "asset": "UTXOASSET", + "asset_events": "creation", + "asset_longname": null, + "block_index": 198, + "call_date": 0, + "call_price": 0.0, + "callable": false, + "description": "My super asset", + "description_locked": false, + "divisible": true, + "fee_paid": 50000000, + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "locked": false, + "quantity": 100000000000, + "reset": false, + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "status": "valid", + "transfer": false, + "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_index": 64, + "block_time": 1729850819, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "block_index": 198, + "block_time": 1729850819 + } + ], + "next_cursor": 395, + "result_count": 23 + }, + "/v2/events/ASSET_DESTRUCTION": { + "result": [ + { + "event_index": 547, + "event": "ASSET_DESTRUCTION", + "params": { + "asset": "XCP", + "block_index": 195, + "quantity": 1, + "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "status": "valid", + "tag": "64657374726f79", + "tx_hash": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "tx_index": 61, + "block_time": 1729850809, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000001" + }, + "tx_hash": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "block_index": 195, + "block_time": 1729850809 + } + ], + "next_cursor": 157, + "result_count": 2 + }, + "/v2/events/OPEN_ORDER": { + "result": [ + { + "event_index": 529, + "event": "OPEN_ORDER", + "params": { + "block_index": 193, + "expiration": 21, + "expire_index": 214, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "fee_required": 0, + "fee_required_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "status": "open", + "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_index": 59, + "block_time": 1729850800, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "block_index": 193, + "block_time": 1729850800 + } + ], + "next_cursor": 516, + "result_count": 7 + }, + "/v2/events/ORDER_MATCH": { + "result": [ + { + "event_index": 491, + "event": "ORDER_MATCH", + "params": { + "backward_asset": "BTC", + "backward_quantity": 3000, + "block_index": 188, + "fee_paid": 0, + "forward_asset": "XCP", + "forward_quantity": 3000, + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "match_expire_index": 208, + "status": "pending", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_block_index": 186, + "tx0_expiration": 21, + "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_index": 51, + "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "tx1_block_index": 188, + "tx1_expiration": 21, + "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx1_index": 54, + "block_time": 1729850771, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "block_index": 188, + "block_time": 1729850771 + } + ], + "next_cursor": 475, + "result_count": 3 + }, + "/v2/events/ORDER_UPDATE": { + "result": [ + { + "event_index": 521, + "event": "ORDER_UPDATE", + "params": { + "status": "cancelled", + "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302" + }, + "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "block_index": 192, + "block_time": 1729850796 + } + ], + "next_cursor": 490, + "result_count": 11 + }, + "/v2/events/ORDER_FILLED": { + "result": [ + { + "event_index": 482, + "event": "ORDER_FILLED", + "params": { + "status": "filled", + "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3" + }, + "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "block_index": 187, + "block_time": 1729850768 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_MATCH_UPDATE": { + "result": [ + { + "event_index": 481, + "event": "ORDER_MATCH_UPDATE", + "params": { + "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "status": "completed" + }, + "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "block_index": 187, + "block_time": 1729850768 + } + ], + "next_cursor": 454, + "result_count": 2 + }, + "/v2/events/BTC_PAY": { + "result": [ + { + "event_index": 483, + "event": "BTC_PAY", + "params": { + "block_index": 187, + "btc_amount": 2000, + "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "status": "valid", + "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "tx_index": 53, + "block_time": 1729850768, + "btc_amount_normalized": "0.00002000" + }, + "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "block_index": 187, + "block_time": 1729850768 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/CANCEL_ORDER": { + "result": [ + { + "event_index": 523, + "event": "CANCEL_ORDER", + "params": { + "block_index": 192, + "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "status": "valid", + "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "tx_index": 58, + "block_time": 1729850796 + }, + "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "block_index": 192, + "block_time": 1729850796 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_EXPIRATION": { + "result": [ + { + "event_index": 462, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 184, + "order_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "block_time": 1729850698 + }, + "tx_hash": null, + "block_index": 184, + "block_time": 1729850698 + } + ], + "next_cursor": 460, + "result_count": 2 + }, + "/v2/events/ORDER_MATCH_EXPIRATION": { + "result": [ + { + "event_index": 457, + "event": "ORDER_MATCH_EXPIRATION", + "params": { + "block_index": 184, + "order_match_id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "block_time": 1729850698 + }, + "tx_hash": null, + "block_index": 184, + "block_time": 1729850698 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/OPEN_DISPENSER": { + "result": [ + { + "event_index": 553, + "event": "OPEN_DISPENSER", + "params": { + "asset": "TESTLOCKDESC", + "block_index": 196, + "dispense_count": 0, + "escrow_quantity": 10000, + "give_quantity": 1, + "give_remaining": 10000, + "oracle_address": null, + "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "satoshirate": 1, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "status": 0, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_index": 62, + "block_time": 1729850812, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001" + }, + "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "block_index": 196, + "block_time": 1729850812 + } + ], + "next_cursor": 272, + "result_count": 5 + }, + "/v2/events/DISPENSER_UPDATE": { + "result": [ + { + "event_index": 600, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "status": 0, + "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 560, + "result_count": 8 + }, + "/v2/events/REFILL_DISPENSER": { + "result": [ + { + "event_index": 261, + "event": "REFILL_DISPENSER", + "params": { + "asset": "XCP", + "block_index": 144, + "destination": "mvfH8EzCtwp8Ju3Xq6hGzBsRbfjEeHPeoo", + "dispense_quantity": 10, + "dispenser_tx_hash": "2b483dd9a65666f5548c936d667508c8b3edaf1a472c29a7999c2755abecc717", + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx_hash": "fc7f709809d6f2bddabc5df0411e3b1ade7efb063817ade54b014f9c6b65f104", + "tx_index": 31, + "block_time": 1729850601, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000010" + }, + "tx_hash": "fc7f709809d6f2bddabc5df0411e3b1ade7efb063817ade54b014f9c6b65f104", + "block_index": 144, + "block_time": 1729850601 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/DISPENSE": { + "result": [ + { + "event_index": 601, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 201, + "btc_amount": 1000, + "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 561, + "result_count": 5 + }, + "/v2/events/BROADCAST": { + "result": [ + { + "event_index": 218, + "event": "BROADCAST", + "params": { + "block_index": 138, + "fee_fraction_int": 0, + "locked": false, + "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "status": "valid", + "text": "price-USD", + "timestamp": 4003903983, + "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "tx_index": 25, + "value": 66600.0, + "block_time": 1729850567, + "fee_fraction_int_normalized": "0.00000000" + }, + "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "block_index": 138, + "block_time": 1729850567 + } + ], + "next_cursor": 213, + "result_count": 2 + }, + "/v2/events/NEW_FAIRMINTER": { + "result": [ + { + "event_index": 342, + "event": "NEW_FAIRMINTER", + "params": { + "asset": "A95428958968845068", + "asset_longname": "MYASSETA.SUBMYASSETA", + "asset_parent": "MYASSETA", + "block_index": 155, + "burn_payment": false, + "description": "", + "divisible": true, + "end_block": 0, + "hard_cap": 0, + "lock_description": false, + "lock_quantity": false, + "max_mint_per_tx": 0, + "minted_asset_commission_int": 0, + "pre_minted": false, + "premint_quantity": 0, + "price": 1, + "quantity_by_price": 5, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "start_block": 0, + "status": "open", + "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_index": 42, + "block_time": 1729850651, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "block_index": 155, + "block_time": 1729850651 + } + ], + "next_cursor": 196, + "result_count": 5 + }, + "/v2/events/FAIRMINTER_UPDATE": { + "result": [ + { + "event_index": 155, + "event": "FAIRMINTER_UPDATE", + "params": { + "status": "closed", + "tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841" + }, + "tx_hash": null, + "block_index": 130, + "block_time": 1729850538 + } + ], + "next_cursor": 110, + "result_count": 2 + }, + "/v2/events/NEW_FAIRMINT": { + "result": [ + { + "event_index": 207, + "event": "NEW_FAIRMINT", + "params": { + "asset": "FAIRMINTD", + "block_index": 136, + "commission": 0, + "earn_quantity": 40, + "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "paid_quantity": 34, + "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "status": "valid", + "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_index": 23, + "block_time": 1729850561, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "block_index": 136, + "block_time": 1729850561 + } + ], + "next_cursor": 190, + "result_count": 10 + }, + "/v2/events/ATTACH_TO_UTXO": { + "result": [ + { + "event_index": 577, + "event": "ATTACH_TO_UTXO", + "params": { + "asset": "UTXOASSET", + "block_index": 199, + "destination": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a:1", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "status": "valid", + "tx_hash": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a", + "tx_index": 65, + "block_time": 1729850823, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a", + "block_index": 199, + "block_time": 1729850823 + } + ], + "next_cursor": 319, + "result_count": 3 + }, + "/v2/events/DETACH_FROM_UTXO": { + "result": [ + { + "event_index": 311, + "event": "DETACH_FROM_UTXO", + "params": { + "asset": "MYASSETA", + "block_index": 151, + "destination": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "fee_paid": 0, + "msg_index": 0, + "quantity": 500000000, + "source": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9:0", + "status": "valid", + "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "tx_index": 38, + "block_time": 1729850626, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "block_index": 151, + "block_time": 1729850626 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/UTXO_MOVE": { + "result": [ + { + "event_index": 598, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 201, + "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "msg_index": 1, + "quantity": 1500000000, + "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "status": "valid", + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_index": 68, + "block_time": 1729850846, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "block_index": 201, + "block_time": 1729850846 + } + ], + "next_cursor": 595, + "result_count": 11 + }, + "/v2/events/BURN": { + "result": [ + { + "event_index": 70, + "event": "BURN", + "params": { + "block_index": 121, + "burned": 50000000, + "earned": 74999996667, + "source": "bcrt1qyy00zkcnzhrwx3vkjasfktxa6954zr7aw8na5g", + "status": "valid", + "tx_hash": "19ac57f341a56378548a660b5982a7937163b3ba0509160d379c719ef5778b72", + "tx_index": 9, + "block_time": 1729850504, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + "tx_hash": "19ac57f341a56378548a660b5982a7937163b3ba0509160d379c719ef5778b72", + "block_index": 121, + "block_time": 1729850504 + } + ], + "next_cursor": 65, + "result_count": 10 + } +} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index d60233179a..56a80c3927 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -124,7 +124,7 @@ "event_index": "$EVENT_INDEX_5", "params": { "block_index": "$BLOCK_INDEX", - "count": 1, + "count": 3, "transaction_id": 100, }, "tx_hash": "$TX_HASH", diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 4ebb2baca2..9e3190a4e7 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -57,7 +57,7 @@ CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -SCENARIOS = scenario_18_utxo.SCENARIO +# SCENARIOS = scenario_18_utxo.SCENARIO def compare_strings(string1, string2): @@ -341,7 +341,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From 299f88fb33f963de3d815a3b52b2baad6afe8455 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 11:38:40 +0000 Subject: [PATCH 66/71] update fixtures, blueprint, release notes and config --- apiary.apib | 4731 +++++++++-------- .../counterpartycore/lib/config.py | 4 +- .../test/fixtures/api_v2_fixtures.json | 12 + .../test/regtest/apidoc/apicache.json | 3342 ++++++------ release-notes/release-notes-v10.6.0.md | 4 + 5 files changed, 4067 insertions(+), 4026 deletions(-) diff --git a/apiary.apib b/apiary.apib index 8bac5984a1..5e33ba7fa5 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-24 13:37:02.909694. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-25 11:29:11.751223. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -177,22 +177,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 564, + "event_index": 590, "event": "NEW_BLOCK", "params": { - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_index": 198, - "block_time": 1729777001, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_index": 201, + "block_time": 1729855734, "difficulty": 545259519, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28" + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4" }, "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 556, - "result_count": 98 + "next_cursor": 580, + "result_count": 101 } ``` @@ -202,20 +202,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 565, + "event_index": 591, "event": "NEW_TRANSACTION", "params": { - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_index": 198, - "block_time": 1729777001, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_index": 201, + "block_time": 1729855734, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "fee": 0, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -225,13 +225,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 557, - "result_count": 65 + "next_cursor": 582, + "result_count": 69 } ``` @@ -241,21 +241,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 566, + "event_index": 592, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 198, + "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "out_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], "next_cursor": 558, @@ -269,23 +269,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 577, + "event_index": 603, "event": "BLOCK_PARSED", "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", + "block_index": 201, + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 563, - "result_count": 98 + "next_cursor": 589, + "result_count": 101 } ``` @@ -295,20 +295,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 576, + "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68 }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 562, - "result_count": 52 + "next_cursor": 578, + "result_count": 54 } ``` @@ -320,19 +320,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 570, + "event_index": 596, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 198, - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "block_index": 201, + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -342,13 +342,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 567, - "result_count": 57 + "next_cursor": 593, + "result_count": 61 } ``` @@ -358,19 +358,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -380,13 +380,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 571, - "result_count": 72 + "next_cursor": 597, + "result_count": 76 } ``` @@ -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": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "memo": null, "quantity": 10000, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "status": "valid", - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", "tx_index": 55, - "block_time": 1729776956, + "block_time": 1729855675, "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": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", "block_index": 189, - "block_time": 1729776956 + "block_time": 1729855675 } ], "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": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "valid", - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "tx_index": 56, - "block_time": 1729776961, + "block_time": 1729855679, "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": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "block_time": 1729776961 + "block_time": 1729855679 } ], "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": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "status": "valid", - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "tx_index": 60, - "block_time": 1729776976, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "block_time": 1729776976 + "block_time": 1729855694 } ], "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": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "valid", - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "tx_index": 41, - "block_time": 1729776829, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "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": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "block_time": 1729776829 + "block_time": 1729855544 } ], "next_cursor": null, @@ -582,22 +582,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 394, + "event_index": 567, "event": "ASSET_CREATION", "params": { - "asset_id": "95428956980101314", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "asset_name": "A95428956980101314", - "block_index": 161, - "block_time": 1729776858 + "asset_id": "4336417415635", + "asset_longname": null, + "asset_name": "UTXOASSET", + "block_index": 198, + "block_time": 1729855708 }, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "block_index": 161, - "block_time": 1729776858 + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "block_index": 198, + "block_time": 1729855708 } ], - "next_cursor": 381, - "result_count": 10 + "next_cursor": 394, + "result_count": 11 } ``` @@ -607,40 +607,40 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 395, + "event_index": 568, "event": "ASSET_ISSUANCE", "params": { - "asset": "A95428956980101314", + "asset": "UTXOASSET", "asset_events": "creation", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "block_index": 161, + "asset_longname": null, + "block_index": 198, "call_date": 0, "call_price": 0.0, "callable": false, - "description": "A subnumeric asset", + "description": "My super asset", "description_locked": false, "divisible": true, - "fee_paid": 0, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "fee_paid": 50000000, + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "status": "valid", "transfer": false, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "tx_index": 48, - "block_time": 1729776858, + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_index": 64, + "block_time": 1729855708, "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" + "fee_paid_normalized": "0.50000000" }, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "block_index": 161, - "block_time": 1729776858 + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "block_index": 198, + "block_time": 1729855708 } ], - "next_cursor": 388, - "result_count": 22 + "next_cursor": 395, + "result_count": 23 } ``` @@ -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": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", "tag": "64657374726f79", - "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", + "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "tx_index": 61, - "block_time": 1729776979, + "block_time": 1729855698, "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": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", + "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "block_index": 195, - "block_time": 1729776979 + "block_time": 1729855698 } ], "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": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "open", - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "tx_index": 59, - "block_time": 1729776972, + "block_time": 1729855691, "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": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "block_time": 1729776972 + "block_time": 1729855691 } ], "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": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "tx0_index": 51, - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx1_index": 54, - "block_time": 1729776953, + "block_time": 1729855661, "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": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "block_index": 188, - "block_time": 1729776953 + "block_time": 1729855661 } ], "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": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b" + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b" }, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_time": 1729776967 + "block_time": 1729855686 } ], "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": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a" + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92" }, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "block_time": 1729776949 + "block_time": 1729855657 } ], "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": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "status": "completed" }, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "block_time": 1729776949 + "block_time": 1729855657 } ], "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": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "status": "valid", - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "tx_index": 53, - "block_time": 1729776949, + "block_time": 1729855657, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "block_time": 1729776949 + "block_time": 1729855657 } ], "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": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "valid", - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "tx_index": 58, - "block_time": 1729776967 + "block_time": 1729855686 }, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_time": 1729776967 + "block_time": 1729855686 } ], "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": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "block_time": 1729776882 + "order_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "block_time": 1729855589 }, "tx_hash": null, "block_index": 184, - "block_time": 1729776882 + "block_time": 1729855589 } ], "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": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "block_time": 1729776882 + "order_match_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "block_time": 1729855589 }, "tx_hash": null, "block_index": 184, - "block_time": 1729776882 + "block_time": 1729855589 } ], "next_cursor": null, @@ -991,17 +991,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "satoshirate": 1, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": 0, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "tx_index": 62, - "block_time": 1729776983, + "block_time": 1729855702, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1010,9 +1010,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 196, - "block_time": 1729776983 + "block_time": 1729855702 } ], "next_cursor": 272, @@ -1026,15 +1026,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 574, + "event_index": 600, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "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": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], "next_cursor": 560, @@ -1065,13 +1065,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", + "destination": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", "dispense_quantity": 10, - "dispenser_tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx_hash": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", + "dispenser_tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx_hash": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", "tx_index": 31, - "block_time": 1729776791, + "block_time": 1729855485, "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": "b4367d784015ff786c8b111e1249bd3524c48ce67ec001814f7164d639ca8825", + "tx_hash": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", "block_index": 144, - "block_time": 1729776791 + "block_time": 1729855485 } ], "next_cursor": null, @@ -1097,20 +1097,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 575, + "event_index": 601, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 198, + "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "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": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], "next_cursor": 561, @@ -1145,19 +1145,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "tx_index": 25, "value": 66600.0, - "block_time": 1729776757, + "block_time": 1729855452, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "block_index": 138, - "block_time": 1729776757 + "block_time": 1729855452 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "start_block": 0, "status": "open", - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, - "block_time": 1729776834, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "block_index": 155, - "block_time": 1729776834 + "block_time": 1729855547 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3" + "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6" }, "tx_hash": null, "block_index": 130, - "block_time": 1729776728 + "block_time": 1729855421 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "paid_quantity": 34, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "status": "valid", - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, - "block_time": 1729776750, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "block_index": 136, - "block_time": 1729776750 + "block_time": 1729855445 } ], "next_cursor": 190, @@ -1289,37 +1289,37 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 319, + "event_index": 577, "event": "ATTACH_TO_UTXO", "params": { - "asset": "MYASSETA", - "block_index": 152, - "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", + "asset": "UTXOASSET", + "block_index": 199, + "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "status": "valid", - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", - "tx_index": 39, - "block_time": 1729776822, + "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "tx_index": 65, + "block_time": 1729855711, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "description": "My super asset", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", - "block_index": 152, - "block_time": 1729776822 + "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "block_index": 199, + "block_time": 1729855711 } ], - "next_cursor": 296, - "result_count": 2 + "next_cursor": 319, + "result_count": 3 } ``` @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", + "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", + "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", "status": "valid", - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "tx_index": 38, - "block_time": 1729776818, + "block_time": 1729855532, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "block_index": 151, - "block_time": 1729776818 + "block_time": 1729855532 } ], "next_cursor": null, @@ -1369,19 +1369,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 572, + "event_index": 598, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 198, - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "block_index": 201, + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "msg_index": 1, "quantity": 1500000000, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "status": "valid", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,13 +1391,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 569, - "result_count": 9 + "next_cursor": 595, + "result_count": 11 } ``` @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", + "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", "status": "valid", - "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", + "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", "tx_index": 9, - "block_time": 1729776691, + "block_time": 1729855388, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", + "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", "block_index": 121, - "block_time": 1729776691 + "block_time": 1729855388 } ], "next_cursor": 65, @@ -1464,7 +1464,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `198` (str, optional) - The index of the most recent block to return + + cursor: `201` (str, optional) - The index of the most recent block to return + Default: `None` + limit: `5` (int, optional) - The number of blocks to return + Default: `10` @@ -1481,68 +1481,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", "difficulty": 545259519, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, "confirmed": true }, { - "block_index": 197, - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "block_time": 1729776988, - "previous_block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", + "block_index": 200, + "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_time": 1729855721, + "previous_block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", "difficulty": 545259519, - "ledger_hash": "b30038c228d73eb9c88b2ca971193a018ac3f68720c4647c7ec06c1b21bc5fb2", - "txlist_hash": "c64a47bfdcd98bd1e2ed69b137766afce61271dddfb151c1e3a085ec60b8bee9", - "messages_hash": "72b887cd33f43580d02780aaca8cf764552b57dc6f5a790d9bf8a82231a0d079", - "transaction_count": 1, + "ledger_hash": "2af8619b803c6b29b1f2a055316de2c9a9d803e259a14a16463761b47e9cf3e6", + "txlist_hash": "31846f1896caccd2aca7812d9e520696d531a9983e2bb001f2123a3a89a3aec7", + "messages_hash": "9690ded4173551a008579d5c17dedd4b0bc4c8092a5f4714232a8c4a99c6f2a8", + "transaction_count": 2, "confirmed": true }, { - "block_index": 196, - "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "block_time": 1729776983, - "previous_block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", + "block_index": 199, + "block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", + "block_time": 1729855711, + "previous_block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", "difficulty": 545259519, - "ledger_hash": "5088f90944f94cc039d253ccde60a0635dbca10e17275565cac4203ffb80c832", - "txlist_hash": "4b1dae0241f6d3bb217bbc48ac5bbfa06197c51e91fbf3568bed4c5b132c3f9f", - "messages_hash": "ee79ed17425c3e62d5abeff1fc65a45e788ef9b26e71d686a43fb5d26c29430c", + "ledger_hash": "695862b698c288f3575ab76526d762fbb8cadd2840770cd3a6e25392bfcc8ef7", + "txlist_hash": "f402f7327c28f3f618fdc4c02ee814dd38ebf36b527be4d3d45a6c88fed7a0ea", + "messages_hash": "7ae4443aa7388cb1b7871359fd4f53c81032ccef4306818777d8af425c8e72cf", "transaction_count": 1, "confirmed": true }, { - "block_index": 195, - "block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", - "block_time": 1729776979, - "previous_block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", + "block_index": 198, + "block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", + "block_time": 1729855708, + "previous_block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", "difficulty": 545259519, - "ledger_hash": "b84b12aeeeceb76cfc87253fa6e675cb2e4cb3880d87941025f1f6702356178b", - "txlist_hash": "105256948da2848a4ed5f437f3142522bb1a7899af3ddba45f878b50ac0c35cb", - "messages_hash": "8a8395bdb32d083d6ce0216be6106ff9c429bd081fd8df140f820bf0a0f2d118", + "ledger_hash": "e1f38930925bd16d72e4063e03bfe1be141a684cdb720f46afeff674d11cc8f7", + "txlist_hash": "edb105e264828d7213766b56c453579079b093d839a4ededa6aa20aa18ad5c0c", + "messages_hash": "d2b8819a871fce75c132452e7bfc05033665284f65c32e5772e45cd234ba6a41", "transaction_count": 1, "confirmed": true }, { - "block_index": 194, - "block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", - "block_time": 1729776976, - "previous_block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", + "block_index": 197, + "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_time": 1729855705, + "previous_block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", "difficulty": 545259519, - "ledger_hash": "b1d37c355f54287466651bfe7ef0a7ba89167cd55d20297ddd388f76295039d6", - "txlist_hash": "441d3c14334c4d1775e40efc63e1c91bfa5e90d5a79003fad5ab48b90b8b40b4", - "messages_hash": "f8d24ea6ba8929cdb4aabcf9d01ecd8659b2af3d4865fde51770dd277b2f3c43", + "ledger_hash": "6d667e5a72d2d202f9a8e7a8e17c905c5c2a5f465961617c81e45892642ac1cb", + "txlist_hash": "a1c33347d3a88485e486bb04b0cbbe78b67a010ba4e3b29afb0a9302b0038835", + "messages_hash": "7e2630bc7f158c56282287639aab6e840784c4b5368007ddda5030db90ce009f", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 193, - "result_count": 98 + "next_cursor": 196, + "result_count": 101 } ``` @@ -1561,7 +1561,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1572,14 +1572,14 @@ Return the information of a block ``` { "result": { - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", "difficulty": 545259519, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8` (str, required) - The index of the block to return + + block_hash: `355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1602,14 +1602,14 @@ Return the information of a block ``` { "result": { - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "previous_block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", "difficulty": 545259519, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, "confirmed": true } @@ -1621,8 +1621,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return - + cursor: `64` (str, optional) - The last transaction index to return + + block_index: `201` (int, required) - The index of the block to return + + cursor: `68` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1639,18 +1639,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1672,10 +1672,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `577` (str, optional) - The last event index to return + + cursor: `603` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1692,43 +1692,43 @@ Returns the events of a block { "result": [ { - "event_index": 577, + "event_index": 603, "event": "BLOCK_PARSED", "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", + "block_index": 201, + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null }, { - "event_index": 576, + "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68 }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { - "event_index": 575, + "event_index": 601, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 198, + "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,18 +1739,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { - "event_index": 574, + "event_index": 600, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,10 +1785,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" } ], - "next_cursor": 572, + "next_cursor": 598, "result_count": 14 } ``` @@ -1798,7 +1798,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -1846,7 +1846,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + event: `CREDIT` (str, required) - The event to filter by + cursor (str, optional) - The last event index to return + Default: `None` @@ -1865,19 +1865,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,22 +1887,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { - "event_index": 571, + "event_index": 597, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,32 +1912,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { - "event_index": 568, + "event_index": 594, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" } ], "next_cursor": null, @@ -1950,7 +1950,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -1999,17 +1999,17 @@ Returns the credits of a block { "result": [ { - "block_index": 198, - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "block_index": 201, + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -2020,17 +2020,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 198, + "block_index": 201, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -2041,21 +2041,21 @@ Returns the credits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 198, + "block_index": 201, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2072,7 +2072,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2110,17 +2110,17 @@ Returns the debits of a block { "result": [ { - "block_index": 198, + "block_index": 201, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -2131,21 +2131,21 @@ Returns the debits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 198, + "block_index": 201, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "object_id": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "block_index": 184, "confirmed": true, - "block_time": 1729776882 + "block_time": 1729855589 }, { "type": "order", - "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, "confirmed": true, - "block_time": 1729776882 + "block_time": 1729855589 }, { "type": "order_match", - "object_id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "block_index": 184, "confirmed": true, - "block_time": 1729776882 + "block_time": 1729855589 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "status": "valid", "confirmed": true, - "block_time": 1729776967 + "block_time": 1729855686 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", + "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "block_index": 195, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729776979, + "block_time": 1729855698, "asset_info": { "divisible": true, "asset_longname": null, @@ -2297,7 +2297,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `161` (int, required) - The index of the block to return + + block_index: `198` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2328,32 +2328,32 @@ Returns the issuances of a block { "result": [ { - "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", + "tx_index": 64, + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", + "block_index": 198, + "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, + "description": "My super asset", + "fee_paid": 50000000, "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", + "asset_longname": null, "locked": false, "reset": false, "description_locked": false, "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776858, + "block_time": 1729855708, "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" + "fee_paid_normalized": "0.50000000" } ], "next_cursor": null, @@ -2366,7 +2366,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -2384,11 +2384,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2396,7 +2396,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -2408,11 +2408,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2420,11 +2420,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2442,7 +2442,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -2460,29 +2460,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 64, + "tx_index": 68, "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2497,7 +2497,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -2538,16 +2538,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729776976, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -2586,10 +2586,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2614,7 +2614,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729776834, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2651,22 +2651,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776750, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2705,17 +2705,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "block_index": 138, - "block_hash": "68baf18c771077f47e41655c136b0c40956558b9f38d4e33872e998a57a7739f", - "block_time": 1729776757, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_hash": "3d837020cd5862c91a6829d9d01db5b1f10ce3cbc1a2e07984a33b20a07c27c5", + "block_time": 1729855452, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865:1", + "utxos_info": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2740,25 +2740,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "block_hash": "050f629f829e0d36aced9240c4101f05a2bbb6d5a8e159acf8cb9fdf335533e4", - "block_time": 1729776949, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "719f932fad8ae84f86690a3e04621c623123a540c0792674e1ac224cbe376832", + "block_time": 1729855657, + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "btc_amount": 2000, "fee": 10000, - "data": "0bc614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b25415bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "data": "0bbeb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "supported": true, - "utxos_info": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839:0", + "utxos_info": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "status": "valid" } }, @@ -2773,23 +2773,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", - "block_time": 1729776967, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", + "block_time": 1729855686, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "supported": true, - "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", + "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "status": "valid" } }, @@ -2804,17 +2804,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", + "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "block_index": 195, - "block_hash": "367f08eac09b6236d038b197197e15bd6e093c1946e3a2202c48872a4afe9a87", - "block_time": 1729776979, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "block_hash": "18d6543027004fa20eefa1a2859bb34b52f61c9d47606a76167b9698a36e96c9", + "block_time": 1729855698, + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa:1", + "utxos_info": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2844,17 +2844,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 196, - "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "block_time": 1729776983, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", + "block_time": 1729855702, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", + "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2871,7 +2871,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2889,18 +2889,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2920,17 +2920,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "block_hash": "46325a8e604e6aa924525e4ce69577c3693626036561464e45561406eb281b89", - "block_time": 1729776829, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "1c8ee877704870a5c60bb53d1c2f0b163a7acc79620f1ab68b1b4ae24a2c85cf", + "block_time": 1729855544, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e:1", + "utxos_info": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2943,7 +2943,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2967,26 +2967,26 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", - "block_index": 161, - "block_hash": "116987d935ffb862311955bd01e0cb08f3a019de31716f7e89d2ff8f0edef55a", - "block_time": 1729776858, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx_index": 64, + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "block_index": 198, + "block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", + "block_time": 1729855708, + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "17015308217a15c0c2000000174876e80001000016987952c23e7c7c94dd9fd148af3f5276f9092bbbc2e941207375626e756d65726963206173736574", + "data": "16000003f1a69ea1d3000000174876e8000100004d79207375706572206173736574", "supported": true, - "utxos_info": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99:1", + "utxos_info": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", - "message_type_id": 23, + "message_type_id": 22, "message_data": { - "asset_id": 95428956980101314, - "asset": "A95428956980101314", - "subasset_longname": "A95428959745315388.SUBNUMERIC", + "asset_id": 4336417415635, + "asset": "UTXOASSET", + "subasset_longname": null, "quantity": 100000000000, "divisible": true, "lock": false, @@ -2994,7 +2994,7 @@ Here is sample API output for each of these transactions: "callable": false, "call_date": 0, "call_price": 0.0, - "description": "A subnumeric asset", + "description": "My super asset", "status": "valid", "quantity_normalized": "1000.00000000" } @@ -3010,17 +3010,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", - "block_time": 1729776972, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", + "block_time": 1729855691, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", + "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3063,17 +3063,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", "block_index": 189, - "block_hash": "384b72dd365c3ac0ebab177957df46e8fbdc06cbd3c7004b9039c446bfe9fa52", - "block_time": 1729776956, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "block_hash": "427ae65934dcd0dbd23b7e51bb35379652d9a193d2fbd5adaa2c92bfe516f1d2", + "block_time": 1729855675, + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710804e27f9201757a2b45bc47377f51e88f2fc7bdd07", + "data": "0200000000000000010000000000002710801fe70fcf646daca82d24519e04b3c290bc4ee845", "supported": true, - "utxos_info": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e:1", + "utxos_info": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3081,7 +3081,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "memo": null, "asset_info": { "divisible": true, @@ -3104,17 +3104,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "block_hash": "36570d30f2c8a11ef5eb589231faff30448991762f60b197be923a4f46e4915c", - "block_time": 1729776961, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "4daf5bebb83a500be3f9cad61932a0a5ff5ec8564481d1d9c4c32632cc54d01f", + "block_time": 1729855679, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802f61f4a6229425911b5b60caf31a874f19d8cf4280c9a769a241e84c930a7effea9ae52dcf5bd948c9804e27f9201757a2b45bc47377f51e88f2fc7bdd07400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038090f15ced94700f317670d7d923e986e2a6e5808a80d983ee3c4c35979315d10bc2fb19b3de2121cbe1801fe70fcf646daca82d24519e04b3c290bc4ee845400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa:0", + "utxos_info": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3122,14 +3122,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -3137,7 +3137,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3163,23 +3163,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "block_hash": "4455d3509420d342f61c83aa139acb989470cbd2ea0f523a6d8dedb1e12330f6", - "block_time": 1729776976, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "block_hash": "13f4367cb5bd0d5c31f4826a35d709738b525b49fcf3b1e6787151dee274fce9", + "block_time": 1729855694, + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804e27f9201757a2b45bc47377f51e88f2fc7bdd07017377656570206d7920617373657473", + "data": "04801fe70fcf646daca82d24519e04b3c290bc4ee845017377656570206d7920617373657473", "supported": true, - "utxos_info": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66:1", + "utxos_info": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "memo": "sweep my assets" } @@ -3194,7 +3194,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `64` (str, optional) - The index of the most recent transactions to return + + cursor: `68` (str, optional) - The index of the most recent transactions to return + Default: `None` + limit: `2` (int, optional) - The number of transactions to return + Default: `10` @@ -3211,18 +3211,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3234,31 +3234,23 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 63, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "block_time": 1729776988, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", + "tx_index": 67, + "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "block_index": 200, + "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_time": 1729855721, + "source": "", + "destination": null, + "btc_amount": null, + "fee": null, + "data": null, "supported": true, - "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" + "utxos_info": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0 f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "confirmed": true } ], - "next_cursor": 62, - "result_count": 65 + "next_cursor": 66, + "result_count": 69 } ``` @@ -3267,7 +3259,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010139a8913e53502a7b640846053d3cfdca850c4731b184a193c1e19e0ac5560fcb0200000000ffffffff03a00f00000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c00000000000000000c6a0aeefdf3da506923f1fd5a30c70827010000001600142f61f4a6229425911b5b60caf31a874f19d8cf4202473044022065046a8e95bbd752a20cf3db6bb6e73a37790b6e2a149470b548c46bccd4f9ee022067a5ee8c077564eefe4f14d0191dc4326ef308c45a13db3360093f2b91a145b001210387b9df27b98064e93726b8588f79ad86a732606b4e887ff96a0396c15a0ad3d100000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001019ba23798dfa802c63ae9b2ebb354cf992067058a3ffef540d8cb0cbbe1cd82920000000000ffffffff0200000000000000002c6a2a77f7c8fd32f3c067edcc9802c3f89e91a15ba3b3954dd99ca872b88d3e5e60ba596d8a555b28c1648729f0ca052a01000000160014686905953261342337f07034895a218e560b28aa0247304402206b4b2301efc059ef9e667e139f19c917a399a9e5d132f559362105df595394a10220093c25f79c9f75a2af112766ff4301af64e980e32d36643d509eb28a9ecb8bb1012103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f100000000` (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. @@ -3280,54 +3272,66 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "39a8913e53502a7b640846053d3cfdca850c4731b184a193c1e19e0ac5560fcb", - "n": 2, + "hash": "9ba23798dfa802c63ae9b2ebb354cf992067058a3ffef540d8cb0cbbe1cd8292", + "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false } ], "vout": [ - { - "value": 4000, - "script_pub_key": "001451269fef373ad8fe2dd8fce8dca208f10459c33c" - }, { "value": 0, - "script_pub_key": "6a0aeefdf3da506923f1fd5a" + "script_pub_key": "6a2a77f7c8fd32f3c067edcc9802c3f89e91a15ba3b3954dd99ca872b88d3e5e60ba596d8a555b28c1648729" }, { - "value": 4949854000, - "script_pub_key": "00142f61f4a6229425911b5b60caf31a874f19d8cf42" + "value": 4999990000, + "script_pub_key": "0014686905953261342337f07034895a218e560b28aa" } ], "vtxinwit": [ - "3044022065046a8e95bbd752a20cf3db6bb6e73a37790b6e2a149470b548c46bccd4f9ee022067a5ee8c077564eefe4f14d0191dc4326ef308c45a13db3360093f2b91a145b001", - "0387b9df27b98064e93726b8588f79ad86a732606b4e887ff96a0396c15a0ad3d1" + "304402206b4b2301efc059ef9e667e139f19c917a399a9e5d132f559362105df595394a10220093c25f79c9f75a2af112766ff4301af64e980e32d36643d509eb28a9ecb8bb101", + "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" ], "lock_time": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "tx_id": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2" + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_id": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1" }, "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, + "message_type": "dispenser", + "message_type_id": 12, "message_data": { - "data": "00" + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "mainchainrate": 1, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "escrow_quantity_normalized": "0.00010000" } }, - "btc_amount_normalized": "0.00004000" + "btc_amount_normalized": "0.00000000" } } ``` @@ -3337,7 +3341,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d` (str, required) - Transaction hash + + tx_hash: `ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de` (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. @@ -3348,18 +3352,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "3adfd2398ce4a22b04fefceb71d3eb2ee66a28233ba39cecd0cba0f4af10ae9e", + "hash": "6c51b4747e343ff48ca5d364ad32c4a1dae3b4e27d2bfdca7df2c65321867dc2", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3369,20 +3373,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e1b26b4580ff075639ff5ef44e98b020309d1f03fe4660d7611b5159df82098d2abb6906e7a8875783a5ce8494dea" + "script_pub_key": "6a2e8e584f24970cedd8197e136ca5d7eb68b26e5c59a720d1ab4b7a064005f7b4bfbdf1f532cae32c58b84b46576dc9" }, { - "value": 4999955000, - "script_pub_key": "00144e27f9201757a2b45bc47377f51e88f2fc7bdd07" + "value": 4999970000, + "script_pub_key": "00141fe70fcf646daca82d24519e04b3c290bc4ee845" } ], "vtxinwit": [ - "304402204c730b1849ca9bd584cbf2859a39b6ed49c235a8fae8369e8465b99d46b4681102200e23e042a59214ac85e413b194974a564fe94a5323652eaecae6d47ab9184c4f01", - "02b919f494dfd97e0831b0b73371c81b6b5b4876f7c1881d6f21a32f22e44ec129" + "304402202f41770c5d29a3b62b94a88f08de624cb08c7b0497062c9d4ca626c014856bf50220021f85fbff19e0de3b8f84f65cb033350387af21f40e9b9c7d5d2233bfc665e601", + "03ed0f47d2926fe2a31d01c87c5879c72d66524aa47e3f26c78259bfccc960c451" ], "lock_time": 0, - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_id": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d" + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_id": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3390,7 +3394,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -3439,7 +3443,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `64` (int, required) - The index of the transaction + + tx_index: `68` (int, required) - The index of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3450,18 +3454,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3480,7 +3484,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (str, required) - The hash of the transaction + + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (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. @@ -3491,18 +3495,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_hash": "2e581012b141e0835946188ed4a07622024a0cc2f21c42e37ff431cbb5512de8", - "block_time": 1729777001, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "destination": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1 c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3521,7 +3525,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `64` (int, required) - The index of the transaction to return + + tx_index: `68` (int, required) - The index of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -3541,32 +3545,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 576, + "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68 }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 575, + "event_index": 601, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 198, + "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3577,20 +3581,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 574, + "event_index": 600, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -3600,24 +3604,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3627,24 +3631,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 572, + "event_index": 598, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 198, - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "block_index": 201, + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "msg_index": 1, "quantity": 1500000000, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "status": "valid", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3654,12 +3658,12 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 571, + "next_cursor": 597, "result_count": 12 } ``` @@ -3669,10 +3673,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (str, required) - The hash of the transaction to return + + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `577` (str, optional) - The last event index to return + + cursor: `603` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3689,32 +3693,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 576, + "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68 }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 575, + "event_index": 601, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 198, + "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3725,20 +3729,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 574, + "event_index": 600, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -3748,24 +3752,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3775,24 +3779,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 572, + "event_index": 598, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 198, - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "block_index": 201, + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "msg_index": 1, "quantity": 1500000000, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "status": "valid", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3802,12 +3806,12 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 571, + "next_cursor": 597, "result_count": 12 } ``` @@ -3817,7 +3821,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (str, required) - The hash of the transaction to return + + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (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 @@ -3835,11 +3839,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3847,7 +3851,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3859,11 +3863,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3871,11 +3875,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -3893,7 +3897,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (str, required) - The hash of the transaction to return + + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (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 @@ -3911,29 +3915,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 64, + "tx_index": 68, "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3948,7 +3952,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -3970,9 +3974,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `64` (int, required) - The index of the transaction to return + + tx_index: `68` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `577` (str, optional) - The last event index to return + + cursor: `603` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3989,19 +3993,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -4011,24 +4015,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 571, + "event_index": 597, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -4038,36 +4042,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 568, + "event_index": 594, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], "next_cursor": null, @@ -4080,9 +4084,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (str, required) - The hash of the transaction to return + + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `577` (str, optional) - The last event index to return + + cursor: `603` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4099,19 +4103,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -4121,24 +4125,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 571, + "event_index": 597, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -4148,36 +4152,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 568, + "event_index": 594, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], "next_cursor": null, @@ -4192,7 +4196,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - Comma separated list of addresses + + addresses: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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 @@ -4216,7 +4220,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4226,7 +4230,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4237,7 +4241,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4247,7 +4251,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4258,7 +4262,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4268,7 +4272,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4279,7 +4283,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4289,7 +4293,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4300,7 +4304,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4310,7 +4314,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4327,8 +4331,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - Comma separated list of addresses to return - + cursor: `64` (str, optional) - The last transaction index to return + + addresses: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - Comma separated list of addresses to return + + cursor: `68` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4346,17 +4350,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 63, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", - "block_time": 1729776988, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_time": 1729855705, + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "btc_amount": 4000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", + "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -4369,17 +4373,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 196, - "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "block_time": 1729776983, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", + "block_time": 1729855702, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", + "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4396,7 +4400,7 @@ Returns the transactions of a list of addresses "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4408,17 +4412,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", - "block_time": 1729776972, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", + "block_time": 1729855691, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", + "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4454,23 +4458,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", - "block_time": 1729776967, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", + "block_time": 1729855686, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "supported": true, - "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", + "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "status": "valid" } }, @@ -4478,17 +4482,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 191, - "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", - "block_time": 1729776964, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", + "block_time": 1729855683, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", + "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4533,10 +4537,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `577` (str, optional) - The last event index to return + + cursor: `603` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4559,27 +4563,27 @@ Returns the events of a list of addresses "asset": "TESTLOCKDESC", "block_index": 197, "btc_amount": 4000, - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "dispense_index": 0, "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "tx_index": 63, - "block_time": 1729776988, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729776988 + "block_time": 1729855705 }, { "event_index": 560, @@ -4588,64 +4592,64 @@ Returns the events of a list of addresses "asset": "TESTLOCKDESC", "dispense_count": 1, "give_remaining": 6000, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": 0, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "give_remaining_normalized": "0.00006000" }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729776988 + "block_time": 1729855705 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "block_index": 197, "calling_function": "dispense", - "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "event": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "quantity": 4000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729776988, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "0.00004000" }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729776988 + "block_time": 1729855705 }, { "event_index": 557, "event": "NEW_TRANSACTION", "params": { - "block_hash": "718950ebd75765bc042fdc8b298c40d345ada036e6e61910d6cfefb0804f2d28", + "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", "block_index": 197, - "block_time": 1729776988, + "block_time": 1729855705, "btc_amount": 4000, "data": "0d00", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "fee": 0, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "tx_index": 63, - "utxos_info": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", + "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4655,9 +4659,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00004000" }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729776988 + "block_time": 1729855705 } ], "next_cursor": 557, @@ -4670,7 +4674,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq,bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt,bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t` (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 @@ -4686,18 +4690,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "quantity": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69, "asset_info": { "divisible": true, "asset_longname": null, @@ -4707,22 +4711,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, - "tx_index": 65, + "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -4732,22 +4736,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", - "block_index": 198, - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "block_index": 201, + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, - "tx_index": 65, + "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -4757,30 +4761,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729777005.7045548, + "block_time": 1729855738.770461, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "destination": "", "fee": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69, + "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -4794,7 +4798,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 } ], "next_cursor": null, @@ -4807,7 +4811,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -4827,7 +4831,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4835,14 +4839,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4850,14 +4854,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4872,7 +4876,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -4880,7 +4884,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4897,7 +4901,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -4910,7 +4914,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4935,7 +4939,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4985,16 +4989,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776967, + "block_time": 1729855686, "asset_info": { "divisible": true, "asset_longname": null, @@ -5006,16 +5010,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "event": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776882, + "block_time": 1729855589, "asset_info": { "divisible": true, "asset_longname": null, @@ -5027,20 +5031,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", + "event": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776858, + "block_time": 1729855573, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5048,20 +5052,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", + "event": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776846, + "block_time": 1729855560, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5073,16 +5077,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", + "event": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", "tx_index": 39, - "utxo": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", - "utxo_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "utxo": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", + "utxo_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "confirmed": true, - "block_time": 1729776822, + "block_time": 1729855536, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5099,7 +5103,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5138,20 +5142,20 @@ Returns the debits of an address "result": [ { "block_index": 196, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "quantity": 10000, "action": "open dispenser", - "event": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "event": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776983, + "block_time": 1729855702, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5159,16 +5163,16 @@ Returns the debits of an address }, { "block_index": 193, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "event": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776972, + "block_time": 1729855691, "asset_info": { "divisible": true, "asset_longname": null, @@ -5180,16 +5184,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776964, + "block_time": 1729855683, "asset_info": { "divisible": true, "asset_longname": null, @@ -5201,16 +5205,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "divisible": true, "asset_longname": null, @@ -5222,20 +5226,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5252,7 +5256,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address of the feed + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5287,7 +5291,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -5306,9 +5310,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", + "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", "block_index": 137, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5316,7 +5320,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729776753, + "block_time": 1729855449, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5330,7 +5334,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -5349,14 +5353,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "d3eb98025f98da1c60732f1b5f9b963134fa8c3558c428b6ec2e288f5d3be7dd", + "tx_hash": "37e8c0835b2a01a3842916b149cf508f1126b2ad03f8e4460aed0f734256c794", "block_index": 112, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729776660, + "block_time": 1729855359, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5371,7 +5375,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -5390,10 +5394,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5401,7 +5405,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "divisible": true, "asset_longname": null, @@ -5414,10 +5418,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5425,11 +5429,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5438,10 +5442,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5449,11 +5453,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5462,10 +5466,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", + "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", "block_index": 152, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5473,11 +5477,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776822, + "block_time": 1729855536, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5486,10 +5490,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", + "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", "block_index": 149, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5497,11 +5501,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776810, + "block_time": 1729855525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5519,7 +5523,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt` (str, required) - The address to return + + address: `bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736` (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 @@ -5538,10 +5542,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "block_index": 151, - "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", - "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", + "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", + "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5549,11 +5553,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776818, + "block_time": 1729855532, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5571,7 +5575,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -5591,10 +5595,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5602,11 +5606,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5615,10 +5619,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5626,11 +5630,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5639,10 +5643,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4", + "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", "block_index": 152, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "a2c29677cdd3581b6677bb1fa76cd2bc3ceff3d90a94b5d5f394ebb29af4a8d4:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5650,11 +5654,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776822, + "block_time": 1729855536, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5663,10 +5667,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "dbf2d4f7da70c3701d8a16fcf223c80b20cf196418e8f931041420d02d2f4dca", + "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", "block_index": 149, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5674,11 +5678,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776810, + "block_time": 1729855525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5696,7 +5700,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt` (str, required) - The address to return + + address: `bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736` (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` @@ -5716,10 +5720,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "ccf6e6da2097e809e8f309b84f6e41cf5d45ba58e909f1366395ebae2aafb77b", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "block_index": 151, - "source": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75:0", - "destination": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", + "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", + "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5727,11 +5731,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776818, + "block_time": 1729855532, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5749,7 +5753,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5778,9 +5782,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5789,7 +5793,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5799,7 +5803,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -5815,9 +5819,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5826,7 +5830,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5836,11 +5840,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776988, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5861,7 +5865,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -5874,9 +5878,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5885,7 +5889,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5895,7 +5899,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -5917,7 +5921,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -5937,19 +5941,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5957,7 +5961,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5972,11 +5976,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776988, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5986,19 +5990,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6006,7 +6010,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6021,7 +6025,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -6035,19 +6039,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6055,7 +6059,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6070,7 +6074,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776764, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -6092,7 +6096,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address to return + + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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 @@ -6112,19 +6116,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6132,7 +6136,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6147,11 +6151,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776988, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6161,19 +6165,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6181,7 +6185,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6196,7 +6200,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -6210,19 +6214,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6230,7 +6234,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6245,7 +6249,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776764, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -6267,7 +6271,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -6288,19 +6292,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6308,7 +6312,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6323,7 +6327,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -6337,19 +6341,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6357,7 +6361,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6372,7 +6376,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776764, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -6394,7 +6398,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address to return + + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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` @@ -6415,19 +6419,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6435,7 +6439,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6450,7 +6454,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -6464,19 +6468,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6484,7 +6488,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6499,7 +6503,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776764, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -6521,7 +6525,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq` (str, required) - The address to return + + address: `bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt` (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 @@ -6540,16 +6544,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729776976, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -6563,7 +6567,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6595,14 +6599,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", + "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -6617,20 +6621,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776858, + "block_time": 1729855573, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", + "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -6645,20 +6649,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729776855, + "block_time": 1729855569, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", + "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -6673,20 +6677,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776850, + "block_time": 1729855564, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", + "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -6701,20 +6705,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776846, + "block_time": 1729855560, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -6729,7 +6733,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729776834, + "block_time": 1729855547, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6744,7 +6748,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The issuer or owner to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6767,8 +6771,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -6776,16 +6780,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": 1729776846, - "last_issuance_block_time": 1729776855, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -6793,16 +6797,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": 1729776806, - "last_issuance_block_time": 1729776806, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -6810,16 +6814,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": 1729776746, - "last_issuance_block_time": 1729776750, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 19, @@ -6827,16 +6831,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": 1729776731, - "last_issuance_block_time": 1729776742, + "first_issuance_block_time": 1729855425, + "last_issuance_block_time": 1729855437, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -6844,8 +6848,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": 1729776712, - "last_issuance_block_time": 1729776728, + "first_issuance_block_time": 1729855406, + "last_issuance_block_time": 1729855421, "supply_normalized": "0.00000000" } ], @@ -6859,7 +6863,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The issuer to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6882,8 +6886,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -6891,16 +6895,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": 1729776846, - "last_issuance_block_time": 1729776855, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -6908,16 +6912,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": 1729776806, - "last_issuance_block_time": 1729776806, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -6925,16 +6929,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": 1729776746, - "last_issuance_block_time": 1729776750, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 19, @@ -6942,16 +6946,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": 1729776731, - "last_issuance_block_time": 1729776742, + "first_issuance_block_time": 1729855425, + "last_issuance_block_time": 1729855437, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -6959,8 +6963,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": 1729776712, - "last_issuance_block_time": 1729776728, + "first_issuance_block_time": 1729855406, + "last_issuance_block_time": 1729855421, "supply_normalized": "0.00000000" } ], @@ -6974,7 +6978,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The owner to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6997,8 +7001,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -7006,16 +7010,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": 1729776846, - "last_issuance_block_time": 1729776855, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -7023,16 +7027,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": 1729776806, - "last_issuance_block_time": 1729776806, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -7040,16 +7044,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": 1729776746, - "last_issuance_block_time": 1729776750, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 19, @@ -7057,16 +7061,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": 1729776731, - "last_issuance_block_time": 1729776742, + "first_issuance_block_time": 1729855425, + "last_issuance_block_time": 1729855437, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -7074,8 +7078,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": 1729776712, - "last_issuance_block_time": 1729776728, + "first_issuance_block_time": 1729855406, + "last_issuance_block_time": 1729855421, "supply_normalized": "0.00000000" } ], @@ -7089,8 +7093,8 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return - + cursor: `64` (str, optional) - The last transaction index to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + cursor: `68` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -7108,17 +7112,17 @@ Returns the transactions of an address "result": [ { "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 196, - "block_hash": "3c64320be00c4cb2283a902c0c3bf5f06527e79d1bfd0d9d78b50a851f20284d", - "block_time": 1729776983, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", + "block_time": 1729855702, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8:1", + "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7135,7 +7139,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7147,17 +7151,17 @@ Returns the transactions of an address }, { "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "block_hash": "28cdaebd1a8f8568b7b8be98f9c2c9f660b6f29b638cca83881fc80d66a56c02", - "block_time": 1729776972, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", + "block_time": 1729855691, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343:1", + "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7193,23 +7197,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_hash": "32f97c6e29100adf3cda0854dfaf7a0e038450492e8cf9c8780d7edb740dec02", - "block_time": 1729776967, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", + "block_time": 1729855686, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "supported": true, - "utxos_info": "42f6560fc8c7c9e790cbe16253e6a24e373e22bc08709eef029f66165bf5da69:1", + "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "status": "valid" } }, @@ -7217,17 +7221,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 191, - "block_hash": "1831139deac82e9568ba595f54e0de2793694a7a819907489d1b79bb7e96affb", - "block_time": 1729776964, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", + "block_time": 1729855683, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b:1", + "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7263,17 +7267,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "block_hash": "36570d30f2c8a11ef5eb589231faff30448991762f60b197be923a4f46e4915c", - "block_time": 1729776961, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_hash": "4daf5bebb83a500be3f9cad61932a0a5ff5ec8564481d1d9c4c32632cc54d01f", + "block_time": 1729855679, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003802f61f4a6229425911b5b60caf31a874f19d8cf4280c9a769a241e84c930a7effea9ae52dcf5bd948c9804e27f9201757a2b45bc47377f51e88f2fc7bdd07400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038090f15ced94700f317670d7d923e986e2a6e5808a80d983ee3c4c35979315d10bc2fb19b3de2121cbe1801fe70fcf646daca82d24519e04b3c290bc4ee845400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa:0", + "utxos_info": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7281,14 +7285,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7296,7 +7300,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7324,7 +7328,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -7343,20 +7347,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729776829, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7381,7 +7385,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7410,9 +7414,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7427,7 +7431,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729776882, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7453,9 +7457,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7470,7 +7474,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729776953, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7496,9 +7500,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7513,7 +7517,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729776967, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7539,9 +7543,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7556,7 +7560,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729776972, + "block_time": 1729855691, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7591,7 +7595,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The source of the fairminter to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7616,10 +7620,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7644,7 +7648,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729776834, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7653,10 +7657,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", + "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7681,7 +7685,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729776746, + "block_time": 1729855441, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7693,10 +7697,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7721,7 +7725,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729776731, + "block_time": 1729855425, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7733,10 +7737,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", + "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7761,7 +7765,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729776728, + "block_time": 1729855421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7773,10 +7777,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7801,7 +7805,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729776708, + "block_time": 1729855402, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7823,7 +7827,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address of the mints to return + + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7841,22 +7845,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776750, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7865,22 +7869,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", + "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776742, + "block_time": 1729855437, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7889,22 +7893,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", + "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776739, + "block_time": 1729855433, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7913,22 +7917,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", + "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776736, + "block_time": 1729855430, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7937,22 +7941,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cb1e289bbef3e8dd411c8e7ab46bd4311ebb2f232c0f000389a2772bb13aec69", + "tx_hash": "12a62f789339c67d628a9c12915903aab410aab0ef479b338d82f8e3091e9e11", "tx_index": 15, "block_index": 127, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776716, + "block_time": 1729855411, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7961,22 +7965,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776699, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7995,7 +7999,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address of the mints to return + + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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` @@ -8014,22 +8018,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776699, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -8071,8 +8075,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will make the bet - + feed_address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will make the bet + + feed_address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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) @@ -8140,7 +8144,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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) @@ -8196,7 +8200,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8206,9 +8210,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985102, - "btc_fee": 14898, - "rawtransaction": "0200000000010107ef201f70435ccfd55c0672e94c2e89749a4ab265571941c1f792e4e861961c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a29abc6f3ee51a1acfa5f2baac9cfd477da39c89dd5847527c5c38a6dec6d1ef84cb43c1ddccb9d569bc6ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999985110, + "btc_fee": 14890, + "rawtransaction": "0200000000010116f1a232770af6d5f5505439dcb9d2cf3791929b28c1db61d4a6d457afa250d600000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29c96fd5991b61c73d3d690af4e6852608339044ad2ab65f62787cad4cf1eee04ad9d6a83c7c482a29fbd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8230,8 +8234,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending the payment - + order_match_id: `c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096` (str, required) - The ID of the order match to pay for + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending the payment + + order_match_id: `beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3` (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) @@ -8283,23 +8287,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" }, "name": "btcpay", - "data": "434e5452505254590bc614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b254172c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "data": "434e5452505254590bbeb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0cd5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978039, - "btc_fee": 18961, - "rawtransaction": "02000000000101196b9f3fe3445aedae519e648a518ef0402d96c41b372bd6840716d264fef0a20000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03b80b00000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c00000000000000004b6a49f830428a708cd1fd8f241c599f8bf4bb12eae2a2050b11a1fc7f6223969d734b36cfbbf05fc5fe5da66565533b585efaa92b7e81c5bab5c9f3c3da1cfee34d57c8c45c714e1a513d17379c052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999978049, + "btc_fee": 18951, + "rawtransaction": "02000000000101801556913b0d5ae24e208195d99fc10eb45d911dc3d749c946004a33e54234a400000000160014686905953261342337f07034895a218e560b28aaffffffff03b80b000000000000160014686905953261342337f07034895a218e560b28aa00000000000000004b6a491ec27218713d127a70b550b5374ebd2311688f7896b9d896e3884b79376a11180b49a7e96c34397e4da2455a515790d2eda23e0c6c5a4b19068c5cda295709de7064fa8711dcf5dc0b419c052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "status": "valid" } } @@ -8312,7 +8316,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address with the BTC to burn + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -8367,7 +8371,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "quantity": 1000, "overburn": false }, @@ -8375,9 +8379,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985149, - "btc_fee": 13851, - "rawtransaction": "0200000000010148cd77c086ac758b3dec28f0cc0429d62a6f83cbfcc1b97f3c60d0bd7fb3c0cb0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88acfdb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000" + "btc_change": 4999985156, + "btc_fee": 13844, + "rawtransaction": "02000000000101204c7cf46cffafc2754dfe0a8cc18692abceb9af4538df434291c6cc40c25c4b00000000160014686905953261342337f07034895a218e560b28aaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000" } } ``` @@ -8387,8 +8391,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade` (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) @@ -8440,21 +8444,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343" + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade" }, "name": "cancel", - "data": "434e5452505254594630cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "data": "434e5452505254594616a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985102, - "btc_fee": 14898, - "rawtransaction": "020000000001018be64a85dcf8f1e03cc49ce87cd59912751d72c02fd7cabde0737765f25443280000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff0200000000000000002b6a2990471152c6dae4f78c15c0cc28fc62d158bcf6eb2712ad03a8196ea680abcad8ea1fab6fadb412cd23ceb7052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999985110, + "btc_fee": 14890, + "rawtransaction": "02000000000101e0bf2e41513d8b4619ba7e86d54ae169eafc6eb375a9792d6f54e3c74e43c6e200000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29215d331e9cda71e0df05cf5809e417a148a2b0aa5279697c6c873c0a44d46a3580c6baff60d1ee609bd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "status": "valid" } } @@ -8467,7 +8471,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -8522,7 +8526,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8539,9 +8543,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985656, - "btc_fee": 14344, - "rawtransaction": "020000000001012914188be4dcc990bce10565885ed74e9aa3d224fc723970afa56faa09045cc80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000226a2090f0b966e5633148ff12146fb7aa097e4e6cb8580b60e26427157d4a202e0b0af8b9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999985664, + "btc_fee": 14336, + "rawtransaction": "02000000000101acfe9563247aa147ff7345fd78032f9fc16310fd2c9b16128d2815065266bbca00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000226a2088db431b6c4c9f2fb3559f147f45361ee71dea1835f3bf72703ddbb3f716320300ba052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8561,7 +8565,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: `bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl` (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) @@ -8622,7 +8626,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8642,11 +8646,11 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv }, "name": "dispenser", "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949970000, + "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949955041, - "btc_fee": 14959, - "rawtransaction": "0200000000010130926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c502000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2cffffffff0200000000000000002c6a2a203a4b40308e3242e039cc4bf6a43a4dcc9dac389852cd90ced81eee3c31e13463c41f6e7b6eb211a19ae1510a2701000000160014dcf89ab3fd9ecddef4f40258ced046239d271c2c02000000000000", + "btc_change": 4949919549, + "btc_fee": 14951, + "rawtransaction": "0200000000010127689fc33d59b81d7d12b10aaf9183a2be1b0a2a412e1a3be468aa9a3ec834ff010000001600148608770a6406a8a7beca45d41540c52679400f84ffffffff0200000000000000002c6a2a0d5642205c710ec6fc53b5dfb6f050249f9fd8167056f17332d28546f3bdf8435247f5a5107d7bd118993dc70927010000001600148608770a6406a8a7beca45d41540c52679400f8402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8672,7 +8676,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -8727,14 +8731,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -8751,9 +8755,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985595, - "btc_fee": 14405, - "rawtransaction": "020000000001014bee57899ff6f759ebbf6a408801fad2b959912e9311539fa225a729d0cead230000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a2126bb39b583d91f5f66edd1580705f0dbcc4fcd00d3d03b703de3f7f7dbd5a5cef6bbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999985602, + "btc_fee": 14398, + "rawtransaction": "02000000000101cce8e52f637d6ef7002fa8d80f80a35afe711ce962d6dce62de66e04e711675800000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a21460e4f17c4ee415760dd37656c9e18a0612a98cd919da475efb4c1ca3a9a63372ac2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8774,10 +8778,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -8838,10 +8842,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "transfer_destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "lock": false, "reset": false, @@ -8852,9 +8856,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999982956, - "btc_fee": 16498, - "rawtransaction": "02000000000101859ea9abed55ed65724d765e5189070cf600fc37e2bc290a941eaebca0def2a80000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03220200000000000016001451269fef373ad8fe2dd8fce8dca208f10459c33c0000000000000000236a217a796f64f1291997a2369733a3853d3d2b2bee8bb06629a6a5e0fbe51df7c2342e6caf052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999982964, + "btc_fee": 16490, + "rawtransaction": "020000000001017072fef69154a3be8d186fe82ae4f18bf29e97570c985a34c103200916cae9ae00000000160014686905953261342337f07034895a218e560b28aaffffffff032202000000000000160014686905953261342337f07034895a218e560b28aa0000000000000000236a21e6c64dca52277f0eb1f6e4aabbbc67dcdbad286c0e6857c5d14e2d784528c6169774af052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8883,9 +8887,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla,bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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` @@ -8942,16 +8946,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", 1 ], [ "MYASSETA", - "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", 2 ] ], @@ -8959,26 +8963,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028051269fef373ad8fe2dd8fce8dca208f10459c33c802f61f4a6229425911b5b60caf31a874f19d8cf428f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280686905953261342337f07034895a218e560b28aa8090f15ced94700f317670d7d923e986e2a6e5808a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999942840, - "btc_fee": 55160, - "rawtransaction": "0200000000010498bb09d7acee93bd9460f979697a5817a2dc87b58d5ab2a25fbec8a869ce70d60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff200f97ce0f1dfa89e0a5ecf77f68ec1862cafdd753510ac7798b8081b69c9e650000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff48849d4e48c11080f86ec931ff9bd4dfd0ea5091aa752ef946f0d8ac331bc5640000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffe2ee030c19c5b64633b5a0909c50a5a1897adb1914e17aff4842e4c3198eed8c0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff03e80300000000000069512103b7febaabfa9e6f48cdcfadc0fc4b2dd90df15a4e69132d18302b8c5e32c884d12102508932dd48b41d4cb5758a551ade1b8a4de7c3797f09e52bc57ba9fd1b3890e221036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee80300000000000069512102b8febaabfa9e6f48cdecdaad0e766f67c04660969b2b6e6f6fd72e56c3ccdd1e210293b5faf22940bb6e2150134e41bed17957608e60a7c6a7a4e733cc917757bcf721036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aeb8e816a80400000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000000000000", + "btc_change": 19999942870, + "btc_fee": 55130, + "rawtransaction": "02000000000104f9c6dfed5f07929e139887bafac0993494e637add2497138dd8009f6c16726f900000000160014686905953261342337f07034895a218e560b28aaffffffffa4476ae5786629eb181d100b95a71b1e2d92cf3bdd4d8b56aac921cff475746e00000000160014686905953261342337f07034895a218e560b28aaffffffffa4ddafcafeeed7de906289486c0404e8c2c70162607c9e0b70ce208afcde424300000000160014686905953261342337f07034895a218e560b28aaffffffff636e34616cf788484738fa14a9317d5ed924d058930efe9a7c388a88c366ab7200000000160014686905953261342337f07034895a218e560b28aaffffffff03e8030000000000006951210230322ce4131a395c7acc06dae7e2992102a38d1d2c7bd893cfcf7bfc141e4dc82103d9cc6fb00baf2a605481a1b9f0011c5ac0e86608a9e0e1feb0d02b9490c69cee2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121033f322ce4131a395c7aef71b715e69405b511ec290359b3684c6621dd9a4846ad2102f166a720faf3c7f4248e98cf80d6c579296e86ae4c606b7192984ef8fca9b0762103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aed6e816a804000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8994,7 +8998,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -9052,7 +9056,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9069,7 +9073,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9081,9 +9085,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984487, - "btc_fee": 15513, - "rawtransaction": "02000000000101d6d6c20ac623cf5f78c4d26d1416c9a30747c6cf8491dd3fbfc29c3e38d879ae0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000356a338ce6193b4ca4c9f04de91f1cbbd96936ed2065e0c8c751d8a78840942e2fdc186c8375b00aac03f08eaff3c641e5643009173a67b5052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999984495, + "btc_fee": 15505, + "rawtransaction": "020000000001015800135236a76b4f938c410e86bb5fce9c004a5ef1922a87fc29264c8d23852100000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000356a335a780e9070f948142ebeddadeb2521a4c14e6033814daf3430c4e45fcaffb365912347bba97aeca6fe36b36500d9cee59cdab06fb5052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9109,8 +9113,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address that will be receiving the asset + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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 @@ -9170,8 +9174,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9187,19 +9191,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e8802f61f4a6229425911b5b60caf31a874f19d8cf42", + "data": "434e54525052545902000000000000000100000000000003e88090f15ced94700f317670d7d923e986e2a6e5808a", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984794, - "btc_fee": 15206, - "rawtransaction": "02000000000101f7a7defcbc2424b8fcbbad72954ac1bfa9b05c6284de0ef8fdfcaef4b62917a30000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000306a2e9c5c778ec81d6e17ce3b0d8f983ef03a95798ef045e5e049a168fe1b2e1736f53a90ede4e9a4edee9e5bd51d6cd39ab6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999984803, + "btc_fee": 15197, + "rawtransaction": "0200000000010121ffc40b4babdaf128b3d6f09a53c1bab273d4e0a734b96bf46fa00f1662747e00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000306a2ee6a649a011192806ac527ea86d0bd41bb6826d3ff4e0dcb4a01258d3abf26300ebe9279911ff91b83be6f6e0a58da3b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "memo": null, "quantity_normalized": "0.00001000" } @@ -9213,8 +9217,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be sending - + destination: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending + + destination: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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 @@ -9268,23 +9272,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e54525052545904802f61f4a6229425911b5b60caf31a874f19d8cf4207ffff", + "data": "434e545250525459048090f15ced94700f317670d7d923e986e2a6e5808a07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985595, - "btc_fee": 14405, - "rawtransaction": "02000000000101a149c4cd87d1d151c2a93952a35891c5898258795de2350eaa1804497abff6730000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000236a21b1bdc6cc2f16adb27ce78141657b084106d0ee79ca9d56b1959a6e50b8a0844d2abbb9052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999985602, + "btc_fee": 14398, + "rawtransaction": "02000000000101f2fc6394b0f94ec93ecc6b55feb1eb3ec13975478af8c068601dbf94ad1ad6c000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a2143e0116dc11441d0691988addd697612becdf8b8783aa665e9d35ab6df0d163980c2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "flags": 7, "memo": "ffff" } @@ -9298,8 +9302,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: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t` (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` @@ -9352,17 +9356,17 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949854000, "btc_out": 1000, - "btc_change": 4949837918, - "btc_fee": 15082, - "rawtransaction": "02000000000101e2bda465882c0adf7f46864df9deceaba3b74c0c47b931647d46799360d5d29d020000001600142f61f4a6229425911b5b60caf31a874f19d8cf42ffffffff03e8030000000000001600144e27f9201757a2b45bc47377f51e88f2fc7bdd0700000000000000000c6a0a61d5685fa6108486fa7c5e880827010000001600142f61f4a6229425911b5b60caf31a874f19d8cf4202000000000000", + "btc_change": 4949837926, + "btc_fee": 15074, + "rawtransaction": "02000000000101e555f1b41c7905b16de8957b97e6e9d7e259b20e03e48cc7deb22606b556d2db0200000016001490f15ced94700f317670d7d923e986e2a6e5808affffffff03e8030000000000001600141fe70fcf646daca82d24519e04b3c290bc4ee84500000000000000000c6a0a3f7d14e1676410918345668808270100000016001490f15ced94700f317670d7d923e986e2a6e5808a02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9379,7 +9383,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be issuing the asset + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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: `` @@ -9464,7 +9468,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9493,9 +9497,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984733, - "btc_fee": 15267, - "rawtransaction": "02000000000101e92454ae77e444ac9a980d20447664139decf6e5f4f1c78ea506bc525c2b34980000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000316a2f01c9b40be49ad414f0d78fbfc00f8dcd3314bbdd1cacc0774eceb8c9692f5f9b9bd6de91ee55108869848a9e64ac025db6052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999984741, + "btc_fee": 15259, + "rawtransaction": "02000000000101510bcc8fe9fc415d85811de8ac1ae712afc80811ee6750f87cf9d2ef08211ded00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000316a2fa6eada406a9ad6ffe5caadc6ef30fb264cacd56c04c540bde0825f322d3b46fd970cd37c566d9bc876347dc34a0b7665b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9534,7 +9538,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address that will be minting the asset + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -9589,13 +9593,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9605,9 +9609,9 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986395, - "btc_fee": 13605, - "rawtransaction": "02000000000101d04e1298b5b5c49dfc4d4caf1897e44c6622b3c50111213ffb7e347c792d65a10000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff020000000000000000166a1488f4dd8559678f00388733966b5b22a32fc2ad86dbbc052a0100000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000000000000", + "btc_change": 4999986402, + "btc_fee": 13598, + "rawtransaction": "02000000000101ac867ba5bcd37c6200c517353d2367acd3ad91913308be7a410789f06380191000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000166a14254fef3d6914fc2e179156b6a1f67ff27f61e40fe2bc052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9626,10 +9630,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: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address from which the assets are attached + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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: `9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0` (str, optional) - The utxo to attach the assets to + + destination: `a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9682,8 +9686,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2:0", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9696,12 +9700,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c396464326435363039333739343637643634333162393437306334636237613361626365646566393464383634363766646630613263383836356134626465323a307c5843507c31303030", + "data": "434e54525052545964626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c613032646662636130646138383836613630333932636533653466316564393636316264376461373862323661316463316461653830393137613230653965313a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999914568, - "btc_fee": 82432, - "rawtransaction": "020000000001061e6c164906bb1485bb2cde32a51249e9daee2c98cdfabe196b4f42abcc233e540000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff6b16bd31bf58a6d2813afc535c2a9baab74c05a464afe68a19cc665d6367b8320000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff81868f3768ceba92e6c2dcf97441a1d86a7216d29bd0f1fc5376d9e7c67d8b7e0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffffeaa9b753846d6030087bf4832e25c414ccff802dc8ee0625e0d50fd5763701a60000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff4a5c203ab326b276327a588ae223c2d1a6a9845c10d214654d3d97fac54793930000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff8c8dfa09ef943b0a7388d3e71344b52d7cd89cbefc3ebf4cef7329418c9e904a0000000016001451269fef373ad8fe2dd8fce8dca208f10459c33cffffffff04e8030000000000006951210371b03d6a1625098144b14e2028248d520be6e258487524fa75fa8eea88fe95982103e4080ffe7994d8b2525fc2738aa64ac6596add54d528b0df449d2e5a3b80a6a621036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee8030000000000006951210371b03d6a1625098144e515706d6988150efbba0a172923ab79b9c8b9c9e9807a2103b00552aa7f92daa5500e823dd7f00f971a33d655d474b0911ec1725e6ad4a4cc21036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53aee803000000000000695121035bb03d6a1625098144b74826686a8c5f61dcdc42152871a24d8ef8dafd8ae2072103876461cb1df1bfc13568bb09b3c839a32c04b031b244d1a37df94a685fb590a021036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d53ae485e22fc0600000016001451269fef373ad8fe2dd8fce8dca208f10459c33c02000002000002000002000002000002000000000000", + "btc_change": 29999914612, + "btc_fee": 82388, + "rawtransaction": "0200000000010605716071e675587c33579750bed5c8ec1bf237c891072db4b0e92fc18cce527100000000160014686905953261342337f07034895a218e560b28aaffffffff35a8bc7ff88a7cd9ed4a5cceaa0cc2133a6845df0d97c5ace72318c08b6584cc00000000160014686905953261342337f07034895a218e560b28aaffffffff73de384f7bc8b95be01b89efefae251fc1e175901575151136ff1a102b52f35700000000160014686905953261342337f07034895a218e560b28aafffffffff158ad7083c6009e4b0c115784f32f43de1c89d8d06beb110b6964947da9230800000000160014686905953261342337f07034895a218e560b28aaffffffffa000a6e15a6586e1bb10ae296d2fc31dbe1765ff667bf890c26b2575ec77368600000000160014686905953261342337f07034895a218e560b28aafffffffff121c74e33ad45470c87d239644e57f356d017da1ec367b7ed1400201ea62bfe00000000160014686905953261342337f07034895a218e560b28aaffffffff04e803000000000000695121026cf2c05f374b9ff0e2982577c10a457035d1aec17cf64cd05a03f625ec753534210258b52ebe440063c6e38e7a504515cd5a7dd9ec1223181f57f3a1bfa6a0b767d82103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121036cf2c05f374b9ff0e29d7770d2464c3967c0ad823bf618d94949a56bf2203c8721034ffb69be12086cc2f7dc281c564cc9027ecae447291d4f13a2a8bcf5a7e7349a2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee8030000000000006951210246f2c05f374b9ff0e2997e718244457d09e2cbce39ff1a8a2c7ac05f9411591f21022bc25f88236a08f593bd1f24347eff634fae87764d7c2a2b92918dc2c6d504072103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153ae745e22fc06000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9718,8 +9722,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: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to detach the assets to + + utxo: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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 @@ -9773,8 +9777,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9787,12 +9791,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964633465303231633935623533343064636338333663363761633331393363363832626264333833366166326161663039613732626538386338373930353937303a307c62637274317132796e666c6d656838747630757477636c6e35646567736737797a396e7365756e6d65676c617c5843507c31303030", + "data": "434e54525052545964636165323331393231363530313162616431663638333863386532333037613935666664323463363633303836643361623164336339323932373265653639343a307c626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950027996, - "btc_fee": 49004, - "rawtransaction": "02000000000103f1604d0af281e6f17db2b6a2630436089bf38359f64c4da626e33d53785c96a701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff30926f645d40d3d51d3cd2227fb7c348ff2cc58422b84783610a71de03efb3c500000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff0b25b8939d7a1b47a973d68655533b29ed214696bc3426e366ec983bc0440dc801000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55effffffff04e803000000000000695121022ed54a7ffabca05e51fdb26294d94154ecf2fcc7d9c6c45785bc66229f31171d2103c2c91a59928368eb1c73ca259ed4248fb11c3e2808f6789385e74d5d599ec1c22102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee803000000000000695121032ed54a7ffabca05e51fce96e92d1445cbffef092dccfc01b83bc776e9d76461721028d901d56ccd739e00b33c26288c123d0e71a6c2c09b77ec59aad4d521dc9d6c32102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aee8030000000000006951210304d54a7ffabca05e51f7bc3396851219d78899d9ddc5c057e1df051aac07741c2102f4fe7b3aa1b251d87f45f217fcb640bc892f08496ec419f2e3d7743c6eaca3332102fc8a8b8336c00b81ccc9f4f924a5a7491353cbd3cb89452d9706bb5a21313a7853aedc6e0b2701000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e02000002000002000000000000", + "btc_change": 4950028023, + "btc_fee": 48977, + "rawtransaction": "02000000000103bed92378948a8c927b0f4f30654cfb1b479559c13bde38549c7e990d6864e09d010000001600148463c20478eb8c4d7505c47952663c0554394225fffffffff8f202bf763d775bbb5d00741c9485adf494ef17fdad1a5c7863fd9266ef4a1d000000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff7b72603f4dd2f053893ff2281d5541a63914fba299dac012440bca1e81e2a262010000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff04e803000000000000695121037dfeae5b8fecddbfdff1111007d4ab43619904a5c5da9b43317a12d5fb57a46021031178599da07a77c470c1c39ab29163cad6378555a4eda67b658963f5fc4f0ad021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee803000000000000695121027dfeae5b8fecddbfdff64b435bd4af403dce03aac4d09a0e31780490ac10f8d62102527549d1fc2e2e823e9680d7b09b748f9362d409fceeee7e64ce73fcff120b5921036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee8030000000000006951210357feae5b8fecddbfdfe219150c82ad0e00e865efc1da9a42531b76e49d619ca2210222403aa5c54844f447a0faafd4f707f8e254b36397dd9e4d01ba0297cd2b39f021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aef76e0b27010000001600148463c20478eb8c4d7505c47952663c055439422502000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9804,7 +9808,7 @@ Composes a transaction to detach assets from UTXO to an address. } ``` -### Compose Movetoutxo [GET /v2/utxos/{utxo}/compose/movetoutxo{?destination}{&more_utxos}{&verbose}{&show_unconfirmed}] +### Compose Movetoutxo [GET /v2/utxos/{utxo}/compose/movetoutxo{?destination}{&more_utxos}{&exact_fee}{&change_address}{&verbose}{&show_unconfirmed}] Composes a transaction to move assets from UTXO to another UTXO. @@ -9813,6 +9817,10 @@ Composes a transaction to move assets from UTXO to another UTXO. + destination (str, required) - The address to move the assets to + more_utxos (str, optional) - The additional utxos to fund the transaction + Default: `` + + exact_fee (int, optional) - + + Default: `None` + + change_address (str, optional) - + + 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. @@ -9853,12 +9861,29 @@ Returns the valid assets ``` { "result": [ + { + "asset": "UTXOASSET", + "asset_id": "4336417415635", + "asset_longname": null, + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "owner": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset", + "first_issuance_block_index": 198, + "last_issuance_block_index": 198, + "confirmed": true, + "first_issuance_block_time": 1729855708, + "last_issuance_block_time": 1729855708, + "supply_normalized": "1000.00000000" + }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -9866,16 +9891,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729776846, - "last_issuance_block_time": 1729776855, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "owner": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "issuer": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "owner": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "divisible": true, "locked": false, "supply": 100000000000, @@ -9883,16 +9908,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729776842, - "last_issuance_block_time": 1729776842, + "first_issuance_block_time": 1729855557, + "last_issuance_block_time": 1729855557, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -9900,16 +9925,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729776806, - "last_issuance_block_time": 1729776806, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -9917,30 +9942,13 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729776746, - "last_issuance_block_time": 1729776750, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729776731, - "last_issuance_block_time": 1729776742, - "supply_normalized": "0.00000019" } ], - "next_cursor": 3, - "result_count": 8 + "next_cursor": 4, + "result_count": 9 } ``` @@ -9963,8 +9971,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -9972,8 +9980,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729776696, - "last_issuance_block_time": 1729776708, + "first_issuance_block_time": 1729855391, + "last_issuance_block_time": 1729855402, "supply_normalized": "100.00000000" } } @@ -10004,7 +10012,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10012,14 +10020,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10027,7 +10035,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10045,7 +10053,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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. @@ -10057,7 +10065,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -10111,9 +10119,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10128,7 +10136,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729776882, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10154,9 +10162,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10171,7 +10179,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729776953, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10197,9 +10205,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10214,7 +10222,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729776967, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10240,9 +10248,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10257,7 +10265,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729776972, + "block_time": 1729855691, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10283,9 +10291,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10300,7 +10308,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729776949, + "block_time": 1729855657, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10362,13 +10370,13 @@ Returns the orders of an asset { "result": [ { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10382,7 +10390,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729776953, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10402,13 +10410,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10422,7 +10430,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729776949, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10442,13 +10450,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "tx0_index": 49, - "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 50, - "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10462,7 +10470,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729776882, + "block_time": 1729855589, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10542,20 +10550,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776976, + "block_time": 1729855694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10563,20 +10571,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", + "event": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776708, + "block_time": 1729855402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10584,20 +10592,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", + "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776704, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10605,20 +10613,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", + "event": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776704, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10630,16 +10638,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", + "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776704, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10694,17 +10702,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 198, + "block_index": 201, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "utxo": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "utxo_address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -10715,17 +10723,17 @@ Returns the debits of an asset "quantity_normalized": "15.00000000" }, { - "block_index": 195, - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "block_index": 198, + "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", - "quantity": 1, - "action": "destroy", - "event": "436598f257f9c49a8516ecb9ff07c3c736ad0974853d3785086453dc70f0e2fa", - "tx_index": 61, + "quantity": 50000000, + "action": "issuance fee", + "event": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_index": 64, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776979, + "block_time": 1729855708, "asset_info": { "divisible": true, "asset_longname": null, @@ -10733,20 +10741,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "0.50000000" }, { - "block_index": 194, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "block_index": 195, + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", - "quantity": 74499387833, - "action": "sweep", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "tx_index": 60, + "quantity": 1, + "action": "destroy", + "event": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776976, + "block_time": 1729855698, "asset_info": { "divisible": true, "asset_longname": null, @@ -10754,20 +10762,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "744.99388000" + "quantity_normalized": "0.00000001" }, { "block_index": 194, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", - "quantity": 600000, - "action": "sweep fee", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "quantity": 74499387833, + "action": "sweep", + "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776976, + "block_time": 1729855694, "asset_info": { "divisible": true, "asset_longname": null, @@ -10775,20 +10783,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.00600000" + "quantity_normalized": "744.99388000" }, { - "block_index": 193, - "address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "block_index": 194, + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", - "tx_index": 59, + "quantity": 600000, + "action": "sweep fee", + "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776972, + "block_time": 1729855694, "asset_info": { "divisible": true, "asset_longname": null, @@ -10796,11 +10804,11 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "0.00600000" } ], - "next_cursor": 48, - "result_count": 39 + "next_cursor": 49, + "result_count": 40 } ``` @@ -10828,20 +10836,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729776829, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10898,14 +10906,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", + "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -10920,20 +10928,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729776708, + "block_time": 1729855402, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", + "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -10948,20 +10956,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729776704, + "block_time": 1729855399, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -10976,20 +10984,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729776699, + "block_time": 1729855395, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -11004,7 +11012,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729776696, + "block_time": 1729855391, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11037,11 +11045,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11049,7 +11057,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -11062,10 +11070,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11073,7 +11081,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855679, "asset_info": { "divisible": true, "asset_longname": null, @@ -11086,10 +11094,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e", + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", "block_index": 189, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -11097,7 +11105,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776956, + "block_time": 1729855675, "asset_info": { "divisible": true, "asset_longname": null, @@ -11110,10 +11118,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", + "tx_hash": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", "block_index": 157, - "source": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", - "destination": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", + "source": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", + "destination": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11121,7 +11129,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776842, + "block_time": 1729855557, "asset_info": { "divisible": true, "asset_longname": null, @@ -11134,10 +11142,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b", + "tx_hash": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b", "block_index": 156, - "source": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", - "destination": "c80d44c03b98ec66e32634bc964621ed293b535586d673a9471b7a9d93b8250b:0", + "source": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", + "destination": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11145,7 +11153,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776837, + "block_time": 1729855552, "asset_info": { "divisible": true, "asset_longname": null, @@ -11196,9 +11204,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11207,7 +11215,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11217,7 +11225,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -11233,9 +11241,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", + "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", "block_index": 142, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11244,7 +11252,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11254,7 +11262,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776772, + "block_time": 1729855466, "asset_info": { "divisible": true, "asset_longname": null, @@ -11270,9 +11278,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", + "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", "block_index": 150, - "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", + "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11280,10 +11288,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11291,7 +11299,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776814, + "block_time": 1729855529, "asset_info": { "divisible": true, "asset_longname": null, @@ -11307,18 +11315,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11328,7 +11336,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -11353,7 +11361,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - The address to return + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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` @@ -11366,9 +11374,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11377,7 +11385,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11387,7 +11395,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -11437,7 +11445,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -11445,7 +11453,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11454,7 +11462,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -11462,7 +11470,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11471,7 +11479,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -11479,7 +11487,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11488,7 +11496,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -11523,29 +11531,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 64, + "tx_index": 68, "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11560,7 +11568,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -11574,27 +11582,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", + "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", "block_index": 147, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11609,7 +11617,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729776802, + "block_time": 1729855507, "asset_info": { "divisible": true, "asset_longname": null, @@ -11623,19 +11631,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11643,7 +11651,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11658,7 +11666,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -11672,19 +11680,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11692,7 +11700,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11707,7 +11715,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776764, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -11750,8 +11758,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "owner": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -11759,8 +11767,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729776850, - "last_issuance_block_time": 1729776850, + "first_issuance_block_time": 1729855564, + "last_issuance_block_time": 1729855564, "supply_normalized": "0.00000000" } ], @@ -11799,10 +11807,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11827,7 +11835,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729776708, + "block_time": 1729855402, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11867,22 +11875,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "00f5ba8e50b8d668b55902f0f0540995d0fac9453f7b0e3e8f7397a966c19a17", + "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", "tx_index": 13, "block_index": 125, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776708, + "block_time": 1729855402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -11891,22 +11899,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec", + "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "tx_index": 12, "block_index": 124, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776704, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -11915,22 +11923,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776699, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -11949,7 +11957,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k` (str, required) - The address of the mints to return + + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (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` @@ -11968,22 +11976,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "b09c08e7b1622d7bc8aeb105a379628bae52fd0c2e85b21d1550205ede14f421", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776699, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -12032,9 +12040,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12049,7 +12057,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729776882, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12075,9 +12083,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12092,7 +12100,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729776949, + "block_time": 1729855657, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12118,9 +12126,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12135,7 +12143,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729776953, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12161,9 +12169,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "block_index": 188, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12178,7 +12186,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729776953, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12204,9 +12212,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12221,7 +12229,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729776967, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12256,7 +12264,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343` (str, required) - The hash of the transaction that created the order + + order_hash: `16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade` (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. @@ -12268,9 +12276,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "30cea38e0c86ec7399398c5f52e48624e507339fdce58dc946d791b941a7c343", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12285,7 +12293,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729776972, + "block_time": 1729855691, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12317,7 +12325,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541` (str, required) - The hash of the transaction that created the order + + order_hash: `beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c` (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 @@ -12344,13 +12352,13 @@ Returns the order matches of an order { "result": [ { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12364,7 +12372,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729776953, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12384,13 +12392,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12404,7 +12412,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729776949, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12434,7 +12442,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541` (str, required) - The hash of the transaction that created the order + + order_hash: `beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c` (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 @@ -12453,15 +12461,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "cb0f56c50a9ee1c193a184b131470c85cafd3c3d054608647b2a50533e91a839", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "destination": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "btc_amount": 2000, - "order_match_id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "status": "valid", "confirmed": true, - "block_time": 1729776949, + "block_time": 1729855657, "btc_amount_normalized": "0.00002000" } ], @@ -12505,9 +12513,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "block_index": 187, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12525,7 +12533,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729776949, + "block_time": 1729855657, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12551,9 +12559,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "block_index": 188, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12571,7 +12579,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729776953, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12597,9 +12605,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12617,7 +12625,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729776882, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12643,9 +12651,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12663,7 +12671,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729776953, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12689,9 +12697,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "bd2ce22db1c4c65a511b89215546c948f33211a6ab35560c2c9a249330d1183b", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12709,7 +12717,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729776967, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12772,13 +12780,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12795,7 +12803,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729776953, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12815,13 +12823,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12838,7 +12846,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729776949, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12858,13 +12866,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "tx0_index": 49, - "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 50, - "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12881,7 +12889,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729776882, + "block_time": 1729855589, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12939,13 +12947,13 @@ Returns all the order matches { "result": [ { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096", - "tx1_address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12959,7 +12967,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729776953, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12979,13 +12987,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541_5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "c614d9abd2bedc137918a803a6eb4a5c9e81444a471cf65d8de11fec439b2541", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "5bf77a2a4f30840db640c7adeb4143276fe8312d08ac2eabf3a80a304445aa3a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12999,7 +13007,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729776949, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13019,13 +13027,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3_2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", + "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "tx0_index": 49, - "tx0_hash": "23e1424c2b1fd23e7c3de5707c5ec71216f93aee32d68bfdc956d2552b3b93b3", - "tx0_address": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 50, - "tx1_hash": "2f9465066b1c878a8100ffde9f198020ffbd2764265b042c7ce1bee55da7562a", - "tx1_address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13039,7 +13047,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729776882, + "block_time": 1729855589, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13207,66 +13215,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "9927c5bdc4bcd90ea379c49085156d42f350a61701586935d1c4ed1ab2477338", + "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", "block_index": 121, - "source": "bcrt1qt3xp7xltznc6jmsyylsx5f2cswsw3qh7ncjum7", + "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729776691, + "block_time": 1729855388, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "5d2861df57ce5565c34227aa101b58099923458e765f9d07292021f503dcc7d8", + "tx_hash": "bb77500fb17e02a3f324c796f3006a7e396f91a1196457dac24c5fe2b026448e", "block_index": 120, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729776688, + "block_time": 1729855383, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "5e1061c86662cb867de847c20c5c8e890fcae77f9d367d5073f7cc4ad63892cb", + "tx_hash": "05f1080bccd39ab5fa23b2ab46d89ac1dea3accb7bd16e62c5120cbc3752b473", "block_index": 119, - "source": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp", + "source": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729776685, + "block_time": 1729855380, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "32d9e83755a322ae35d20300f07ef6e652f44a13cd8311d6e23ea204f649cf74", + "tx_hash": "a699fe034995e346de923ef0036e71abf388c1f37cba8072eb1cd86f30a510d8", "block_index": 118, - "source": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729776681, + "block_time": 1729855377, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "a0293be2280885f5849d80ab9a4704169384df66188f638cd2a5153687d9d738", + "tx_hash": "fd379debba78df37b4640be27952adc4e58fef0f396e33c089a43fb778c7e7ca", "block_index": 117, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729776677, + "block_time": 1729855374, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13311,9 +13319,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13322,7 +13330,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13332,7 +13340,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -13348,9 +13356,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "b8af76d6b3a118ec6833587186d0a6096aea05dfe27a37bd6da85be2577bca94", + "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", "block_index": 142, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13359,7 +13367,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13369,7 +13377,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776772, + "block_time": 1729855466, "asset_info": { "divisible": true, "asset_longname": null, @@ -13385,9 +13393,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "bea349a09a20d0d7fe27c0571d6aad847949dbe40323bef18f3ff929b4acb9dd", + "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", "block_index": 150, - "source": "mfyq8Vif5Ebuc6mo9W4RmHmaCFj9cw7nKx", + "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13395,10 +13403,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "fbf56eb501ae158dc46045c815ca104d8991c78aaf397d89164f84a04150bfc4", - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13406,7 +13414,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776814, + "block_time": 1729855529, "asset_info": { "divisible": true, "asset_longname": null, @@ -13422,9 +13430,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13433,7 +13441,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13443,11 +13451,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776988, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -13459,18 +13467,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13480,7 +13488,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -13505,7 +13513,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5` (str, required) - The hash of the dispenser to return + + dispenser_hash: `59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54` (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. @@ -13517,9 +13525,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13528,7 +13536,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13538,7 +13546,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -13560,7 +13568,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5` (str, required) - The hash of the dispenser to return + + dispenser_hash: `59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54` (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 @@ -13580,19 +13588,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13600,7 +13608,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13615,7 +13623,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -13629,19 +13637,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13649,7 +13657,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13664,7 +13672,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776764, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -13706,20 +13714,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729776829, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -13744,7 +13752,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e` (str, required) - The hash of the dividend to return + + dividend_hash: `55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca` (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. @@ -13756,20 +13764,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729776829, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -13791,7 +13799,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca` (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 @@ -13814,12 +13822,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "tx_index": 41, - "utxo": "9eae10aff4a0cbd0ec9ca33b23286ae62eebd371ebfcfe042ba2e48c39d2df3a:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "utxo": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "confirmed": true, - "block_time": 1729776829, + "block_time": 1729855544, "asset_info": { "divisible": true, "asset_longname": null, @@ -13831,16 +13839,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qgvvws7mnh6rejtwf60mxnnfjghmxan8g8dgnkt", + "address": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "5c1329b8104e516e3af957d2a31bbb29636d4e661263fd017b719a6617bedf6e", + "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729776829, + "block_time": 1729855544, "asset_info": { "divisible": true, "asset_longname": null, @@ -13865,7 +13873,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `577` (str, optional) - The last event index to return + + cursor: `603` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -13882,47 +13890,47 @@ Returns all events { "result": [ { - "event_index": 577, + "event_index": 603, "event": "BLOCK_PARSED", "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", + "block_index": 201, + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 576, + "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68 }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 575, + "event_index": 601, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 198, + "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "tx_index": 64, - "block_time": 1729777001, + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_index": 68, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -13933,20 +13941,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 574, + "event_index": 600, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -13956,24 +13964,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -13983,13 +13991,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 } ], - "next_cursor": 572, - "result_count": 578 + "next_cursor": 598, + "result_count": 604 } ``` @@ -13998,7 +14006,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `577` (int, required) - The index of the event to return + + event_index: `603` (int, required) - The index of the event to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14009,19 +14017,19 @@ Returns the event of an index ``` { "result": { - "event_index": 577, + "event_index": 603, "event": "BLOCK_PARSED", "params": { - "block_index": 198, - "ledger_hash": "e9df62e6173384af9958427fbab6c11a64e830997416d32e015d6a339a836c56", - "messages_hash": "e797a6fd5ac85d8aef2eb063e78d6703c55b5900df5c7dcf3852a1bb67d87881", + "block_index": 201, + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "8226c82d5cfb6c63c273c775df7b253f8621813ea1e5328e1a9631f559afa4ad", - "block_time": 1729777001 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null, - "block_index": 198, - "block_time": 1729777001 + "block_index": 201, + "block_time": 1729855734 } } ``` @@ -14049,11 +14057,11 @@ Returns the event counts of all blocks "result": [ { "event": "UTXO_MOVE", - "event_count": 9 + "event_count": 11 }, { "event": "TRANSACTION_PARSED", - "event_count": 52 + "event_count": 54 }, { "event": "SWEEP", @@ -14079,7 +14087,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `577` (str, optional) - The last event index to return + + cursor: `603` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14096,19 +14104,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 573, + "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "dispense", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, - "tx_index": 64, + "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -14118,24 +14126,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 571, + "event_index": 597, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -14145,94 +14153,94 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 568, + "event_index": 594, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 198, + "block_index": 201, "calling_function": "utxo move", - "event": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, - "tx_index": 64, - "utxo": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", - "utxo_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "block_time": 1729777001, + "tx_index": 68, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "block_time": 1729777001 + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "block_time": 1729855734 }, { - "event_index": 559, + "event_index": 587, "event": "CREDIT", "params": { - "address": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "TESTLOCKDESC", - "block_index": 197, - "calling_function": "dispense", - "event": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "quantity": 4000, - "tx_index": 63, - "utxo": null, - "utxo_address": null, - "block_time": 1729776988, + "address": null, + "asset": "UTXOASSET", + "block_index": 200, + "calling_function": "utxo move", + "event": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "quantity": 1000000000, + "tx_index": 67, + "utxo": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "utxo_address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "block_time": 1729855721, "asset_info": { "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "description": "My super asset", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, - "quantity_normalized": "0.00004000" + "quantity_normalized": "10.00000000" }, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", - "block_index": 197, - "block_time": 1729776988 + "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "block_index": 200, + "block_time": 1729855721 }, { - "event_index": 540, + "event_index": 584, "event": "CREDIT", "params": { - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "XCP", - "block_index": 194, - "calling_function": "sweep", - "event": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "quantity": 74499387833, - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "block_time": 1729776976, + "address": null, + "asset": "UTXOASSET", + "block_index": 200, + "calling_function": "utxo move", + "event": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "quantity": 1000000000, + "tx_index": 66, + "utxo": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", + "utxo_address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", + "block_time": 1729855721, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "divisible": true, + "locked": false }, - "quantity_normalized": "744.99388000" + "quantity_normalized": "10.00000000" }, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", - "block_index": 194, - "block_time": 1729776976 + "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "block_index": 200, + "block_time": 1729855721 } ], - "next_cursor": 538, - "result_count": 72 + "next_cursor": 575, + "result_count": 76 } ``` @@ -14253,7 +14261,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 72 + "event_count": 76 } } ``` @@ -14282,29 +14290,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 64, + "tx_index": 68, "dispense_index": 0, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14319,7 +14327,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -14333,19 +14341,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "9dd2d5609379467d6431b9470c4cb7a3abcedef94d86467fdf0a2c8865a4bde2", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "84bf2a50997c750a32837f17a0c8c3541f14365f986ffdfe75c3c7c2deb600a8", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14353,7 +14361,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14368,11 +14376,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776988, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -14382,27 +14390,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", + "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", "block_index": 147, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", - "destination": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "a7965c78533de326a64d4cf65983f39b08360463a2b6b27df1e681f20a4d60f1", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 198, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "block_index": 201, + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14417,7 +14425,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729776802, + "block_time": 1729855507, "asset_info": { "divisible": true, "asset_longname": null, @@ -14431,19 +14439,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "840dc10219404374be564230513767de9bcf5eb43d9d6a40c75fca5b5624f647", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14451,7 +14459,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14466,7 +14474,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776768, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -14480,19 +14488,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "4b41a57ca339dc7a966addc3cdb5112b18847186e7152d5d23eb6405ca5f090c", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "dca6d7f20755b67fbea83d6424b485f4a6426c1bd704132abacd60d89de1d0f5", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14500,7 +14508,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14515,7 +14523,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729776764, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -14556,11 +14564,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14568,7 +14576,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -14580,11 +14588,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 64, - "tx_hash": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970", - "block_index": 198, - "source": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff:1", - "destination": "c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970:0", + "tx_index": 68, + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "block_index": 201, + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14592,11 +14600,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -14604,80 +14612,80 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "asset": "XCP", - "quantity": 10, + "tx_index": 67, + "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "block_index": 200, + "source": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", + "destination": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "asset": "UTXOASSET", + "quantity": 1000000000, "status": "valid", - "msg_index": 2, + "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855721, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00000010", + "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "asset": "MYASSETA", - "quantity": 10, + "tx_index": 66, + "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "block_index": 200, + "source": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", + "destination": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", + "asset": "UTXOASSET", + "quantity": 1000000000, "status": "valid", - "msg_index": 1, + "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855721, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "description": "My super asset", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000010", + "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "384328efe1f461c81341bda019f464304d8ed18ec12b166874a7c8a0eaf379aa", - "block_index": 190, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "asset": "MYASSETA", - "quantity": 10, + "tx_index": 65, + "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "block_index": 199, + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", + "asset": "UTXOASSET", + "quantity": 1000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729776961, + "block_time": 1729855711, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "description": "My super asset", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, - "quantity_normalized": "0.00000010", + "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 11, - "result_count": 16 + "next_cursor": 14, + "result_count": 19 } ``` @@ -14717,16 +14725,44 @@ Returns all the issuances ``` { "result": [ + { + "tx_index": 64, + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "msg_index": 0, + "block_index": 198, + "asset": "UTXOASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1729855708, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, { "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", + "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -14741,20 +14777,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776858, + "block_time": 1729855573, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "477d0ec1a76e57d9e249868cac1e252eefa0fd277d7f614aa14056cc7e9d8d70", + "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -14769,20 +14805,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729776855, + "block_time": 1729855569, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "eebb19c9f5b668347cd8151d68bb09a9958322b287354843e2d8f9ae3cb60688", + "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -14797,20 +14833,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776850, + "block_time": 1729855564, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "e1353cc6790ced284f0568442d24a1278373e23cc511ebbe011618818a2d0355", + "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -14825,41 +14861,13 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776846, + "block_time": 1729855560, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 44, - "tx_hash": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", - "msg_index": 0, - "block_index": 157, - "asset": "MYASSETB", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "issuer": "bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset B", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729776842, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 17, - "result_count": 22 + "next_cursor": 18, + "result_count": 23 } ``` @@ -14868,7 +14876,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99` (str, required) - The hash of the transaction to return + + tx_hash: `6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa` (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. @@ -14879,32 +14887,32 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 48, - "tx_hash": "71f42cb169926092e65e5ec35d50a6b46fcb87fe0db3a39d9e74a050c76c9f99", + "tx_index": 64, + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", + "block_index": 198, + "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, + "description": "My super asset", + "fee_paid": 50000000, "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", + "asset_longname": null, "locked": false, "reset": false, "description_locked": false, "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729776858, + "block_time": 1729855708, "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" + "fee_paid_normalized": "0.50000000" } } ``` @@ -14934,16 +14942,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729776976, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -14957,7 +14965,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66` (str, required) - The hash of the transaction to return + + tx_hash: `ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038` (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. @@ -14970,16 +14978,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", - "destination": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729776976, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -15013,9 +15021,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "block_index": 138, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15023,14 +15031,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729776757, + "block_time": 1729855452, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "22c7c1bcbcad78d25b250a5ca540e583313c5b21e3e4b49fa53842bbdddf88be", + "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", "block_index": 137, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15038,7 +15046,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729776753, + "block_time": 1729855449, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15052,7 +15060,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865` (str, required) - The hash of the transaction to return + + tx_hash: `e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076` (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. @@ -15064,9 +15072,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "46620dee6eced639dd6dcd95e5694ae488f6c50aee4c048ccabc94ceb24bd865", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "block_index": 138, - "source": "bcrt1qhpmuznkgrjf297z8qt2pvqhy4sljr327j7c65l", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15074,7 +15082,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729776757, + "block_time": 1729855452, "fee_fraction_int_normalized": "0.00000000" } } @@ -15111,10 +15119,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "918542fb2b7ffef9d7ee15988fcad7340755c486c786a99ee4ab5bd8da02339e", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15139,7 +15147,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729776834, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15148,10 +15156,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", + "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15176,7 +15184,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729776746, + "block_time": 1729855441, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15188,10 +15196,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15216,7 +15224,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729776731, + "block_time": 1729855425, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15228,10 +15236,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", + "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15256,7 +15264,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729776728, + "block_time": 1729855421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15268,10 +15276,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "c4b9eadd9eb1f5a424c21b88e13dcce1b3bc137f488dcce377e5743801a9dd44", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15296,7 +15304,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729776708, + "block_time": 1729855402, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15365,22 +15373,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776750, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -15389,22 +15397,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e7e60afb8dafb89c67f0b9bd62807d5bf038d67f1e50f03f391d6243f96a452d", + "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776742, + "block_time": 1729855437, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -15413,22 +15421,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f15cec5e24958c975682d755ea646b3acb0235992d5d5826c688a6c93a502afc", + "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776739, + "block_time": 1729855433, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -15437,22 +15445,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "8f1a171c18d2a538c3ab11e3901233ac71172012455b4bf46234d6d570ac2199", + "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "c840659f968c67bb0b11479c66bcb02e614d07c86ba9f0e2f9cae3a7f9984161", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776736, + "block_time": 1729855430, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -15461,22 +15469,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "aa41ad4acc191c8b16344683e0338b538e38ea648745ef845646ebcf400d4bca", + "tx_hash": "89950732f61146e284657ed8a261debb58ae756e387a2be32e820051300a6e9e", "tx_index": 17, "block_index": 129, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "fairminter_tx_hash": "18f229ec1f10f9110ac5610d8cb2d6d97af37aa6abfd8c101b180c0801d0e8e3", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776725, + "block_time": 1729855418, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -15495,7 +15503,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064` (str, required) - The hash of the fairmint to return + + tx_hash: `b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f` (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. @@ -15506,22 +15514,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "579fc1e815c395ed246a2aaba286396d011047c301411a967f9095e327c8d064", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9aslff3zjsjezx6mvr90xx58fuva3n6z8wlm7k", - "fairminter_tx_hash": "dff434717bcef5b294b65f72305d4010cfc7f99d0e441da0a9eed8df7e0a79cb", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729776750, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -15539,7 +15547,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3,bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp` (str, required) - The addresses to search for + + addresses: `bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl,bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8` (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. @@ -15553,22 +15561,31 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 2, - "height": 147, - "value": 4949970000, - "confirmations": 52, - "amount": 49.4997, - "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230", - "address": "bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3" + "vout": 1, + "height": 200, + "value": 4949934500, + "confirmations": 2, + "amount": 49.499345, + "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" + }, + { + "vout": 0, + "height": 200, + "value": 5460, + "confirmations": 2, + "amount": 5.46e-05, + "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" }, { "vout": 2, "height": 157, "value": 100000, - "confirmations": 42, + "confirmations": 45, "amount": 0.001, - "txid": "f3446f53976efc7f4f00c378c785254eb608261d525a31f1770d4064a07c1fff", - "address": "bcrt1qp5dm485cv99atu2wz5em7ad3pvgdhky23m9khp" + "txid": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", + "address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8" } ], "next_cursor": null, @@ -15581,7 +15598,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq` (str, required) - The address to search for + + address: `bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt` (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 @@ -15597,28 +15614,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "8e8f9e422184706a0c84bb37c9f387febe9a33b9def4ef8fc9c345967761b35c" + "tx_hash": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e" }, { - "tx_hash": "233d5ccee42040856a80317e152dc470d09aeecd916b7c61b6e8eae155414f66" + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038" }, { - "tx_hash": "5d39e4e4839a62ae5365ee4727ea642d0f00c2f2de20fe20f5d26fa339322d75" + "tx_hash": "58b515d7a93d1780a591bce9f0aa3cda6fd05a4b8bba4333b5827c826266373d" }, { - "tx_hash": "ca05521ced0559ec4b81787af032ffb25086c7e630d4d3e547794846893fce7c" + "tx_hash": "dcb7462dcbd114ef7fc72873f9619957cbebfd2828b2e09b938a3849a689fd85" }, { - "tx_hash": "f8c18dad8fa899bc8f1764d57772d41a2e96a46ad2052e5c9b20d4c7a8226a7e" + "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc" }, { - "tx_hash": "61bef57f9e80c8ad6b0038ec0e933dab81a6de83c79fad2e1c1cf5473edafd94" + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6" }, { - "tx_hash": "72c7c6bf402f8c2574b59d012a41a1a3293daba9c458a96b00daab90c32e6096" + "tx_hash": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db" }, { - "tx_hash": "ae15fe5f943c6369ee3ba38f619ee258d8975a3b3908872b1542b51b623b87ec" + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" } ], "next_cursor": null, @@ -15631,7 +15648,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qrglcmcmpm38hnjwn4q7vawgc84fjr0yx7wyxpq` (str, required) - The address to search for. + + address: `bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr` (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. @@ -15644,8 +15661,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "bfcc2c7b7a0e8828957a930dd6850e9f4afe7573b26fdb171ee48bd22549b892" + "block_index": 9, + "tx_hash": "65f8c1c8e7da91338163ee40b6b4d0e95ea48fb578b77e5aa052ff7329046db0" } } ``` @@ -15655,7 +15672,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qmnuf4vlanmxaaa85qfvva5zxywwjw8pvfcgzn3` (str, required) - The address to search for + + address: `bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl` (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 @@ -15671,12 +15688,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 2, - "height": 147, - "value": 4949970000, - "confirmations": 52, - "amount": 49.4997, - "txid": "c5b3ef03de710a618347b82284c52cff48c3b77f22d23c1dd5d3405d646f9230" + "vout": 1, + "height": 200, + "value": 4949934500, + "confirmations": 2, + "amount": 49.499345, + "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827" + }, + { + "vout": 0, + "height": 200, + "value": 5460, + "confirmations": 2, + "amount": 5.46e-05, + "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6" } ], "next_cursor": null, @@ -15689,7 +15714,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2ynflmeh8tv0utwcln5degsg7yz9nseunmegla` (str, required) - Address to get pubkey for. + + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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. @@ -15701,7 +15726,7 @@ Get pubkey for an address. ``` { - "result": "036d620774c4e280c7d1b85acbc46b443ba372582653670712eee56f2fbb86c54d" + "result": "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" } ``` @@ -15710,7 +15735,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `c4e021c95b5340dcc836c67ac3193c682bbd3836af2aaf09a72be88c87905970` (str, required) - The transaction hash + + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (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. @@ -15722,7 +15747,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101ff1f7ca064400d77f1315a521d2608b64e2585c778c3004f7ffc6e97536f44f30100000000ffffffff03e803000000000000160014b877c14ec81c92a2f84702d41602e4ac3f21c55e00000000000000000c6a0a97c9d5cf40cfb0a1a6dddced0827010000001600141a3f8de361dc4f79c9d3a83cceb9183d5321bc8602473044022041255750faa71c2c4470da8b5d8302abdb16e5a00cfec2ec560f75028ce870ca022074d271780c426ca3e148abfc59c17dc376ae80d7905c71ad614f34760953510a012102fff7c08e2157e344ae7c532dc08d4aa1ff6702708e1ae487c8ad2cb8ec0f37d500000000" + "result": "0200000000010168c1dca088790815d9440f3ed3202ca96829935d5d4fbafd1baa4ba3a514c5ef0100000000ffffffff03e8030000000000001600148463c20478eb8c4d7505c47952663c055439422500000000000000000c6a0a5dbc4e444c8895f99bcddced08270100000016001431beb4e814e8733a24cb4bb6b84dcd898b279b4b0247304402201beacf53d1eb4beaa64f76eeb35851b0b1026eae662b2e4c7b25f653a8ca512a02207c14028ed5ef9c984b157c5cc554ab8e02ec8a6a625d178a73c86ac4f4600dfd012102fa89c64bb5ccf3ece97b15aeef067ec0be07538e53088f9654a4e0aba704801b00000000" } ``` @@ -15744,7 +15769,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 61563 + "result": 61530 } ``` @@ -15777,11 +15802,11 @@ Get the current mempool info. "loaded": true, "size": 1, "bytes": 167, - "usage": 1216, + "usage": 1232, "total_fee": 0.0001, "maxmempool": 300000000, - "mempoolminfee": 1e-05, - "minrelaytxfee": 1e-05, + "mempoolminfee": 0.0, + "minrelaytxfee": 0.0, "incrementalrelayfee": 1e-05, "unbroadcastcount": 1, "fullrbf": false @@ -15817,28 +15842,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65 + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69 }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "quantity": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69, "asset_info": { "divisible": true, "asset_longname": null, @@ -15848,22 +15873,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, - "tx_index": 65, + "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -15873,22 +15898,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", - "block_index": 198, - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "block_index": 201, + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, - "tx_index": 65, + "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -15898,30 +15923,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729777005.7045548, + "block_time": 1729855738.770461, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "destination": "", "fee": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69, + "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -15935,7 +15960,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 } ], "next_cursor": null, @@ -15966,19 +15991,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, - "tx_index": 65, + "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -15988,7 +16013,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 } ], "next_cursor": null, @@ -16001,7 +16026,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d` (str, required) - The hash of the transaction to return + + tx_hash: `ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de` (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 @@ -16021,28 +16046,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65 + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69 }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "quantity": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69, "asset_info": { "divisible": true, "asset_longname": null, @@ -16052,22 +16077,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", - "block_index": 198, + "block_index": 201, "calling_function": "send", - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, - "tx_index": 65, + "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -16077,22 +16102,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", - "block_index": 198, - "event": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "block_index": 201, + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, - "tx_index": 65, + "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729777001, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -16102,30 +16127,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 }, { - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729777005.7045548, + "block_time": 1729855738.770461, "btc_amount": 0, - "data": "020000000000000001000000000000271080c9a769a241e84c930a7effea9ae52dcf5bd948c9", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "destination": "", "fee": 10000, - "source": "bcrt1qfcnljgqh273tgk7ywdml285g7t78hhg8j26xgp", - "tx_hash": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d", - "tx_index": 65, - "utxos_info": "3522c67d39623fe53b7be1f13b2aaa804c5923ad042ffbf3b4f1003faa48d00d:1", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_index": 69, + "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qexnkngjpapxfxzn7ll4f4efdeadajjxfpf0lnq", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -16139,7 +16164,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729777005.7045548 + "timestamp": 1729855738.770461 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index ea39461cc5..dcb27c4d39 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -20,8 +20,8 @@ # Fo example: # NEED_REPARSE_IF_MINOR_IS_LESS_THAN = (1, 800000) # means that we need to reparse from block 800000 if database minor version is less than 1 -NEED_REPARSE_IF_MINOR_IS_LESS_THAN = [(3, 0), (9, 865999)] -NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET = [(3, 0), (9, 2925799)] +NEED_REPARSE_IF_MINOR_IS_LESS_THAN = [(3, 0), (5, 865999), (6, 867000)] +NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET = [(3, 0), (5, 2925799), (6, 2925799)] # Counterparty protocol TXTYPE_FORMAT = ">I" SHORT_TXTYPE_FORMAT = "B" diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 0e145dd4a9..f721dfc6b5 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -14362,6 +14362,18 @@ "type": "str", "description": "The additional utxos to fund the transaction" }, + { + "name": "exact_fee", + "default": null, + "required": false, + "type": "int" + }, + { + "name": "change_address", + "default": null, + "required": false, + "type": "str" + }, { "name": "verbose", "type": "bool", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index cf9a7fa324..ed7ccdf8f9 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": 201, - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", - "block_time": 1729850846, - "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", "difficulty": 545259519, - "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", - "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", - "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, "confirmed": true }, { "block_index": 200, - "block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", - "block_time": 1729850833, - "previous_block_hash": "15f4cf317a9fb3a2df61e4bfa8fe4aeb5bba70ce46225995289cfcf5da4b283c", + "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_time": 1729855721, + "previous_block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", "difficulty": 545259519, - "ledger_hash": "671b15b349acb0309d80d9e17c1d91107a0ce65d2481b8e57d731381ed17a572", - "txlist_hash": "f5d17f8789117cb682a24a06bb808bb20b0ceec1b586846f2f1689d774c8eca9", - "messages_hash": "b34a485b68de1fcadf9875a1f3fbaec92a59da8362e5ea8f626f4c776679a43f", + "ledger_hash": "2af8619b803c6b29b1f2a055316de2c9a9d803e259a14a16463761b47e9cf3e6", + "txlist_hash": "31846f1896caccd2aca7812d9e520696d531a9983e2bb001f2123a3a89a3aec7", + "messages_hash": "9690ded4173551a008579d5c17dedd4b0bc4c8092a5f4714232a8c4a99c6f2a8", "transaction_count": 2, "confirmed": true }, { "block_index": 199, - "block_hash": "15f4cf317a9fb3a2df61e4bfa8fe4aeb5bba70ce46225995289cfcf5da4b283c", - "block_time": 1729850823, - "previous_block_hash": "4537422349c9d869b817812907891777297abfd6eb85e805aa1bde4dccf45959", + "block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", + "block_time": 1729855711, + "previous_block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", "difficulty": 545259519, - "ledger_hash": "9d2fdbdec7050cfb89a17f6a043eaf14406f9a508f9a082ef2f6073be024c5fe", - "txlist_hash": "b2962dd15619e564065ea0d70b576defa99949b7837ea6018aee1ad8b39ec5c1", - "messages_hash": "5c9e9f6b377879b7951ccb20e0418fbc2fcd5f25636ad5ccc6d5bae338d55c86", + "ledger_hash": "695862b698c288f3575ab76526d762fbb8cadd2840770cd3a6e25392bfcc8ef7", + "txlist_hash": "f402f7327c28f3f618fdc4c02ee814dd38ebf36b527be4d3d45a6c88fed7a0ea", + "messages_hash": "7ae4443aa7388cb1b7871359fd4f53c81032ccef4306818777d8af425c8e72cf", "transaction_count": 1, "confirmed": true }, { "block_index": 198, - "block_hash": "4537422349c9d869b817812907891777297abfd6eb85e805aa1bde4dccf45959", - "block_time": 1729850819, - "previous_block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", + "block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", + "block_time": 1729855708, + "previous_block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", "difficulty": 545259519, - "ledger_hash": "b0f837cad2126a4b84b5c1295f01a86d44deb78f4c6c21257522e463ec053945", - "txlist_hash": "a8c72efea66be2c7ef8b24f255749cc1694876c1e988b2a1d967a4c910f77e97", - "messages_hash": "0d8bbdedfb8c378cb69b1c78960dcfffb4252dea46c1292dea56f23b515cd25c", + "ledger_hash": "e1f38930925bd16d72e4063e03bfe1be141a684cdb720f46afeff674d11cc8f7", + "txlist_hash": "edb105e264828d7213766b56c453579079b093d839a4ededa6aa20aa18ad5c0c", + "messages_hash": "d2b8819a871fce75c132452e7bfc05033665284f65c32e5772e45cd234ba6a41", "transaction_count": 1, "confirmed": true }, { "block_index": 197, - "block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", - "block_time": 1729850816, - "previous_block_hash": "5dc2075d0940c78b09e44b1220841b8880685e2cc2bd468350d94b1442c5c19b", + "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_time": 1729855705, + "previous_block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", "difficulty": 545259519, - "ledger_hash": "d8c900642dc847b1656c84b5892afbb1970ca326e68631e0caef1412457d2b14", - "txlist_hash": "4e25078d7ef3914ce272a5b1b510a45283bdea68c7538d6f92d63a93a104d03a", - "messages_hash": "743983ba39244825811e5330ce81b07c79ffe388decff29b145003ae09a37b51", + "ledger_hash": "6d667e5a72d2d202f9a8e7a8e17c905c5c2a5f465961617c81e45892642ac1cb", + "txlist_hash": "a1c33347d3a88485e486bb04b0cbbe78b67a010ba4e3b29afb0a9302b0038835", + "messages_hash": "7e2630bc7f158c56282287639aab6e840784c4b5368007ddda5030db90ce009f", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 201, - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", - "block_time": 1729850846, - "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", "difficulty": 545259519, - "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", - "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", - "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 201, - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", - "block_time": 1729850846, - "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", "difficulty": 545259519, - "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", - "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", - "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", - "block_time": 1729850846, - "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", - "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", - "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", - "block_time": 1729850846 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68 }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { "event_index": 601, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { "event_index": 600, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" } ], "next_cursor": 598, @@ -256,16 +256,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { "event_index": 597, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" }, { "event_index": 594, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d" + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 201, - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "object_id": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "block_index": 184, "confirmed": true, - "block_time": 1729850698 + "block_time": 1729855589 }, { "type": "order", - "object_id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, "confirmed": true, - "block_time": 1729850698 + "block_time": 1729855589 }, { "type": "order_match", - "object_id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "block_index": 184, "confirmed": true, - "block_time": 1729850698 + "block_time": 1729855589 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "status": "valid", "confirmed": true, - "block_time": 1729850796 + "block_time": 1729855686 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "block_index": 195, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729850809, + "block_time": 1729855698, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 64, - "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850819, + "block_time": 1729855708, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "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": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729850805, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -683,10 +683,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -711,7 +711,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729850651, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -726,22 +726,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850561, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -757,17 +757,17 @@ "result": [ { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", - "block_time": 1729850846, - "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", - "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -780,17 +780,17 @@ }, { "tx_index": 67, - "tx_hash": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", "block_index": 200, - "block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca", - "block_time": 1729850833, + "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_time": 1729855721, "source": "", "destination": null, "btc_amount": null, "fee": null, "data": null, "supported": true, - "utxos_info": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0 e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8:0", + "utxos_info": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0 f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", "confirmed": true } ], @@ -799,7 +799,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, @@ -810,7 +810,7 @@ "coinbase": false, "vin": [ { - "hash": "b1ba8f609a874ce7cf083b899f19bb45fd40c9cf6f4b065c1c842f8b1c7e0ab0", + "hash": "9ba23798dfa802c63ae9b2ebb354cf992067058a3ffef540d8cb0cbbe1cd8292", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -820,20 +820,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2a6e0c7ba9076dfbfe526cf8925ea6e9f2d11e7df7948c3fba27344b9be6e8a727a2ec3491546e5cabc193" + "script_pub_key": "6a2a77f7c8fd32f3c067edcc9802c3f89e91a15ba3b3954dd99ca872b88d3e5e60ba596d8a555b28c1648729" }, { "value": 4999990000, - "script_pub_key": "0014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96" + "script_pub_key": "0014686905953261342337f07034895a218e560b28aa" } ], "vtxinwit": [ - "304402207da4c91d21603de940efa9ff58e4cc8fe04a5003c1971a69090d0bb068db2c300220364225d0b7ff88d61b24686978dbd74dda5c532835eedc9fd63b1445041b5a5001", - "030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d6" + "304402206b4b2301efc059ef9e667e139f19c917a399a9e5d132f559362105df595394a10220093c25f79c9f75a2af112766ff4301af64e980e32d36643d509eb28a9ecb8bb101", + "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" ], "lock_time": 0, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", - "tx_id": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b" + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_id": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1" }, "unpacked_data": { "message_type": "dispenser", @@ -850,7 +850,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -863,18 +863,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6f31ec9ee0ea6b7c78201740d89edfd20434e6e82e651d5a80aaa4a50ab65ed2", + "hash": "6c51b4747e343ff48ca5d364ad32c4a1dae3b4e27d2bfdca7df2c65321867dc2", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -884,20 +884,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e3d6a41ddf999864b3091446158f71bea0abdab131871e09cc451085e4547a010fdc04f4b3ad17b7a10b995611f17" + "script_pub_key": "6a2e8e584f24970cedd8197e136ca5d7eb68b26e5c59a720d1ab4b7a064005f7b4bfbdf1f532cae32c58b84b46576dc9" }, { "value": 4999970000, - "script_pub_key": "001440802c79e893db48415ba76f3efb225d23934589" + "script_pub_key": "00141fe70fcf646daca82d24519e04b3c290bc4ee845" } ], "vtxinwit": [ - "304402203b8f53c298156bd2ccfa7f22af9c171fe1d2d6b2a4742aebb7541567164e48ce02202b9baafbc36b5ae63b9a16c2841ee30f815013ef046b115f8d9f1352a1e5ad0d01", - "03b535ed563f9b6da52bf981344116831b478d9984f889104cce1ad15f805b7368" + "304402202f41770c5d29a3b62b94a88f08de624cb08c7b0497062c9d4ca626c014856bf50220021f85fbff19e0de3b8f84f65cb033350387af21f40e9b9c7d5d2233bfc665e601", + "03ed0f47d2926fe2a31d01c87c5879c72d66524aa47e3f26c78259bfccc960c451" ], "lock_time": 0, - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", - "tx_id": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027" + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_id": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de" }, "unpacked_data": { "message_type": "enhanced_send", @@ -905,7 +905,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -932,17 +932,17 @@ "/v2/transactions/": { "result": { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", - "block_time": 1729850846, - "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", - "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -957,17 +957,17 @@ "/v2/transactions/": { "result": { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", - "block_time": 1729850846, - "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", - "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_time": 1729855734, + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -986,12 +986,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68 }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 601, @@ -1000,14 +1000,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1018,9 +1018,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 600, @@ -1029,9 +1029,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -1041,24 +1041,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1068,9 +1068,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 598, @@ -1078,14 +1078,14 @@ "params": { "asset": "XCP", "block_index": 201, - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "msg_index": 1, "quantity": 1500000000, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "status": "valid", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1095,9 +1095,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 597, @@ -1110,12 +1110,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68 }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 601, @@ -1124,14 +1124,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1142,9 +1142,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 600, @@ -1153,9 +1153,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -1165,24 +1165,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1192,9 +1192,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 598, @@ -1202,14 +1202,14 @@ "params": { "asset": "XCP", "block_index": 201, - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "msg_index": 1, "quantity": 1500000000, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "status": "valid", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1219,9 +1219,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 597, @@ -1231,10 +1231,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1242,7 +1242,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1255,10 +1255,10 @@ }, { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1266,11 +1266,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1286,27 +1286,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1321,7 +1321,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1342,16 +1342,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1361,9 +1361,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 597, @@ -1373,12 +1373,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1388,9 +1388,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 594, @@ -1400,24 +1400,24 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": null, @@ -1429,16 +1429,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1448,9 +1448,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 597, @@ -1460,12 +1460,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1475,9 +1475,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 594, @@ -1487,24 +1487,24 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": null, @@ -1517,7 +1517,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1527,7 +1527,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1538,7 +1538,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1548,7 +1548,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1559,7 +1559,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1569,7 +1569,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1580,7 +1580,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1590,7 +1590,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1601,7 +1601,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1611,7 +1611,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1625,17 +1625,17 @@ "result": [ { "tx_index": 63, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", - "block_time": 1729850816, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_time": 1729855705, + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "btc_amount": 4000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d:0", + "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1648,17 +1648,17 @@ }, { "tx_index": 62, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 196, - "block_hash": "5dc2075d0940c78b09e44b1220841b8880685e2cc2bd468350d94b1442c5c19b", - "block_time": 1729850812, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", + "block_time": 1729855702, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b:1", + "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -1675,7 +1675,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -1687,17 +1687,17 @@ }, { "tx_index": 59, - "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "block_hash": "33caddbbef8935092f32bd1b1f8ed37e89bead62a25ffbbf30b1f7f60bb0676d", - "block_time": 1729850800, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", + "block_time": 1729855691, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e:1", + "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1733,23 +1733,23 @@ }, { "tx_index": 58, - "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_hash": "17e86f80cd8d3451f9f0c4f453eed8aacac760085c75799ee5930815fdebfb41", - "block_time": 1729850796, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", + "block_time": 1729855686, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4658d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "supported": true, - "utxos_info": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a:1", + "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "status": "valid" } }, @@ -1757,17 +1757,17 @@ }, { "tx_index": 57, - "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 191, - "block_hash": "2f1d61e212a65a968e0535bc0b61998bf417480edd59b3d5639e25377aa62050", - "block_time": 1729850783, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", + "block_time": 1729855683, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302:1", + "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1814,27 +1814,27 @@ "asset": "TESTLOCKDESC", "block_index": 197, "btc_amount": 4000, - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "dispense_index": 0, "dispense_quantity": 4000, - "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "tx_index": 63, - "block_time": 1729850816, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" }, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729850816 + "block_time": 1729855705 }, { "event_index": 560, @@ -1843,64 +1843,64 @@ "asset": "TESTLOCKDESC", "dispense_count": 1, "give_remaining": 6000, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": 0, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "give_remaining_normalized": "0.00006000" }, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729850816 + "block_time": 1729855705 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "block_index": 197, "calling_function": "dispense", - "event": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "event": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "quantity": 4000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729850816, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "0.00004000" }, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729850816 + "block_time": 1729855705 }, { "event_index": 557, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44bad46165e2707288aeac27b7f85a7c7af00123d07298f92ef66fb5511bb47b", + "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", "block_index": 197, - "block_time": 1729850816, + "block_time": 1729855705, "btc_amount": 4000, "data": "0d00", - "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "fee": 0, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "tx_index": 63, - "utxos_info": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d:0", + "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -1910,9 +1910,9 @@ }, "btc_amount_normalized": "0.00004000" }, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "block_time": 1729850816 + "block_time": 1729855705 } ], "next_cursor": 557, @@ -1921,17 +1921,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "quantity": 10000, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69, "asset_info": { "divisible": true, @@ -1942,22 +1942,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1967,22 +1967,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "block_index": 201, - "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -1992,30 +1992,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729850850.9548645, + "block_time": 1729855738.770461, "btc_amount": 0, - "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "destination": "", "fee": 10000, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69, - "utxos_info": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027:1", + "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -2029,7 +2029,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 } ], "next_cursor": null, @@ -2038,7 +2038,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2046,14 +2046,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2061,14 +2061,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2083,7 +2083,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2091,7 +2091,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2104,7 +2104,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2126,16 +2126,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850796, + "block_time": 1729855686, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,16 +2147,16 @@ }, { "block_index": 184, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "event": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850698, + "block_time": 1729855589, "asset_info": { "divisible": true, "asset_longname": null, @@ -2168,20 +2168,20 @@ }, { "block_index": 161, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "3a325e3de03c9a43fc50faf98987a6fe87bd0cc3fe706355a4bfb1d8da3a55e5", + "event": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850684, + "block_time": 1729855573, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2189,20 +2189,20 @@ }, { "block_index": 158, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "d0b4b9e01aa2c628346cb7dd0e399fc87063595a737e77e264e74d75edc5282f", + "event": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850663, + "block_time": 1729855560, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2214,16 +2214,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f", + "event": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", "tx_index": 39, - "utxo": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f:1", - "utxo_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "utxo": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", + "utxo_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "confirmed": true, - "block_time": 1729850631, + "block_time": 1729855536, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2237,20 +2237,20 @@ "result": [ { "block_index": 196, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "quantity": 10000, "action": "open dispenser", - "event": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "event": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850812, + "block_time": 1729855702, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2258,16 +2258,16 @@ }, { "block_index": 193, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "event": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850800, + "block_time": 1729855691, "asset_info": { "divisible": true, "asset_longname": null, @@ -2279,16 +2279,16 @@ }, { "block_index": 191, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850783, + "block_time": 1729855683, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,16 +2300,16 @@ }, { "block_index": 190, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "divisible": true, "asset_longname": null, @@ -2321,20 +2321,20 @@ }, { "block_index": 190, - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2353,9 +2353,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "a271e5d21093222bb06408c7f0316479daa91351b4cd0ca7fc02937d53daf8e4", + "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", "block_index": 137, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2363,7 +2363,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729850564, + "block_time": 1729855449, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2374,14 +2374,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "d7d98ae3149985e6345374fbbd988121178b423483b506fc5794b890bef5dda3", + "tx_hash": "37e8c0835b2a01a3842916b149cf508f1126b2ad03f8e4460aed0f734256c794", "block_index": 112, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729850470, + "block_time": 1729855359, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2393,10 +2393,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2404,7 +2404,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "divisible": true, "asset_longname": null, @@ -2417,10 +2417,10 @@ }, { "tx_index": 56, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2428,11 +2428,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2441,10 +2441,10 @@ }, { "tx_index": 56, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2452,11 +2452,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2465,10 +2465,10 @@ }, { "tx_index": 39, - "tx_hash": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f", + "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", "block_index": 152, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2476,11 +2476,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850631, + "block_time": 1729855536, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2489,10 +2489,10 @@ }, { "tx_index": 36, - "tx_hash": "b5de3b4a59cdcad3b934271df950837ddcaa270e4c32305fcb7c5f7db6df7ad3", + "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", "block_index": 149, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "87fb5435db15729019d290162db45cd405d65a62f7d6244f37565c79f737b452:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2500,11 +2500,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850620, + "block_time": 1729855525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2519,10 +2519,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "block_index": 151, - "source": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9:0", - "destination": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", + "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2530,11 +2530,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850626, + "block_time": 1729855532, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2549,10 +2549,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2560,11 +2560,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2573,10 +2573,10 @@ }, { "tx_index": 56, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2584,11 +2584,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2597,10 +2597,10 @@ }, { "tx_index": 39, - "tx_hash": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f", + "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", "block_index": 152, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "178a9f4d9b2ce9334916b19bf0a63ab2fc4ca501e65096700346567f9b987b5f:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2608,11 +2608,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850631, + "block_time": 1729855536, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2621,10 +2621,10 @@ }, { "tx_index": 36, - "tx_hash": "b5de3b4a59cdcad3b934271df950837ddcaa270e4c32305fcb7c5f7db6df7ad3", + "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", "block_index": 149, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "87fb5435db15729019d290162db45cd405d65a62f7d6244f37565c79f737b452:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2632,11 +2632,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850620, + "block_time": 1729855525, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2651,10 +2651,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "block_index": 151, - "source": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9:0", - "destination": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", + "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2662,11 +2662,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850626, + "block_time": 1729855532, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2681,9 +2681,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2692,7 +2692,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2702,7 +2702,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -2718,9 +2718,9 @@ }, { "tx_index": 62, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2729,7 +2729,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2739,11 +2739,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850816, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2760,9 +2760,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2771,7 +2771,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2781,7 +2781,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -2801,19 +2801,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2821,7 +2821,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2836,11 +2836,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850816, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -2850,19 +2850,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2870,7 +2870,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2885,7 +2885,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -2899,19 +2899,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2919,7 +2919,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2934,7 +2934,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850575, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -2954,19 +2954,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2974,7 +2974,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2989,11 +2989,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850816, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -3003,19 +3003,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3023,7 +3023,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3038,7 +3038,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -3052,19 +3052,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3072,7 +3072,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3087,7 +3087,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850575, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -3107,19 +3107,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3127,7 +3127,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3142,7 +3142,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -3156,19 +3156,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3176,7 +3176,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3191,7 +3191,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850575, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -3211,19 +3211,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3231,7 +3231,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3246,7 +3246,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -3260,19 +3260,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3280,7 +3280,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3295,7 +3295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850575, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -3314,16 +3314,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729850805, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -3334,14 +3334,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "3a325e3de03c9a43fc50faf98987a6fe87bd0cc3fe706355a4bfb1d8da3a55e5", + "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -3356,20 +3356,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850684, + "block_time": 1729855573, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7ae27b895f098742950f4610fcb9a08fb513f92640963d639115ff2123db9dfa", + "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -3384,20 +3384,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729850679, + "block_time": 1729855569, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "089369c1dee481bc5080c8ab2adf4f8c76db0532d6eea832bc0e5b998fc819c8", + "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -3412,20 +3412,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850676, + "block_time": 1729855564, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d0b4b9e01aa2c628346cb7dd0e399fc87063595a737e77e264e74d75edc5282f", + "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -3440,20 +3440,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850663, + "block_time": 1729855560, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -3468,7 +3468,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729850651, + "block_time": 1729855547, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3482,8 +3482,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -3491,16 +3491,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729850663, - "last_issuance_block_time": 1729850679, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -3508,16 +3508,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729850616, - "last_issuance_block_time": 1729850616, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -3525,16 +3525,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729850556, - "last_issuance_block_time": 1729850561, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 19, @@ -3542,16 +3542,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729850542, - "last_issuance_block_time": 1729850553, + "first_issuance_block_time": 1729855425, + "last_issuance_block_time": 1729855437, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -3559,8 +3559,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729850524, - "last_issuance_block_time": 1729850538, + "first_issuance_block_time": 1729855406, + "last_issuance_block_time": 1729855421, "supply_normalized": "0.00000000" } ], @@ -3573,8 +3573,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -3582,16 +3582,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729850663, - "last_issuance_block_time": 1729850679, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -3599,16 +3599,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729850616, - "last_issuance_block_time": 1729850616, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -3616,16 +3616,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729850556, - "last_issuance_block_time": 1729850561, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 19, @@ -3633,16 +3633,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729850542, - "last_issuance_block_time": 1729850553, + "first_issuance_block_time": 1729855425, + "last_issuance_block_time": 1729855437, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -3650,8 +3650,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729850524, - "last_issuance_block_time": 1729850538, + "first_issuance_block_time": 1729855406, + "last_issuance_block_time": 1729855421, "supply_normalized": "0.00000000" } ], @@ -3664,8 +3664,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -3673,16 +3673,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729850663, - "last_issuance_block_time": 1729850679, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -3690,16 +3690,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729850616, - "last_issuance_block_time": 1729850616, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -3707,16 +3707,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729850556, - "last_issuance_block_time": 1729850561, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 19, @@ -3724,16 +3724,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729850542, - "last_issuance_block_time": 1729850553, + "first_issuance_block_time": 1729855425, + "last_issuance_block_time": 1729855437, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -3741,8 +3741,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729850524, - "last_issuance_block_time": 1729850538, + "first_issuance_block_time": 1729855406, + "last_issuance_block_time": 1729855421, "supply_normalized": "0.00000000" } ], @@ -3753,17 +3753,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 196, - "block_hash": "5dc2075d0940c78b09e44b1220841b8880685e2cc2bd468350d94b1442c5c19b", - "block_time": 1729850812, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", + "block_time": 1729855702, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b:1", + "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -3780,7 +3780,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -3792,17 +3792,17 @@ }, { "tx_index": 59, - "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "block_hash": "33caddbbef8935092f32bd1b1f8ed37e89bead62a25ffbbf30b1f7f60bb0676d", - "block_time": 1729850800, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", + "block_time": 1729855691, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e:1", + "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3838,23 +3838,23 @@ }, { "tx_index": 58, - "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_hash": "17e86f80cd8d3451f9f0c4f453eed8aacac760085c75799ee5930815fdebfb41", - "block_time": 1729850796, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", + "block_time": 1729855686, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4658d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "supported": true, - "utxos_info": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a:1", + "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "status": "valid" } }, @@ -3862,17 +3862,17 @@ }, { "tx_index": 57, - "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 191, - "block_hash": "2f1d61e212a65a968e0535bc0b61998bf417480edd59b3d5639e25377aa62050", - "block_time": 1729850783, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", + "block_time": 1729855683, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302:1", + "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3908,17 +3908,17 @@ }, { "tx_index": 56, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "block_hash": "75af6c396a1d998861805f6688f291cefa94a4f4a8378213ccee3b5493616af6", - "block_time": 1729850778, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "block_hash": "4daf5bebb83a500be3f9cad61932a0a5ff5ec8564481d1d9c4c32632cc54d01f", + "block_time": 1729855679, + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380291da9c4e57a7ea4919c208a3a92bcd597230dab80eb472b0f059e3530f96c78f820b8c9b3cf7ac97c8040802c79e893db48415ba76f3efb225d23934589400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038090f15ced94700f317670d7d923e986e2a6e5808a80d983ee3c4c35979315d10bc2fb19b3de2121cbe1801fe70fcf646daca82d24519e04b3c290bc4ee845400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959:0", + "utxos_info": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3926,14 +3926,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -3941,7 +3941,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3966,20 +3966,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729850637, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4001,9 +4001,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4018,7 +4018,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729850698, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4044,9 +4044,9 @@ }, { "tx_index": 51, - "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4061,7 +4061,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729850771, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4087,9 +4087,9 @@ }, { "tx_index": 57, - "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4104,7 +4104,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729850796, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4130,9 +4130,9 @@ }, { "tx_index": 59, - "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4147,7 +4147,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729850800, + "block_time": 1729855691, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4178,10 +4178,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4206,7 +4206,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729850651, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4215,10 +4215,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4243,7 +4243,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729850556, + "block_time": 1729855441, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4255,10 +4255,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4283,7 +4283,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729850542, + "block_time": 1729855425, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4295,10 +4295,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4323,7 +4323,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729850538, + "block_time": 1729855421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4335,10 +4335,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4363,7 +4363,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729850519, + "block_time": 1729855402, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4381,22 +4381,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850561, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4405,22 +4405,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "63ce3c734541047cfdb7c0e069471c264cbb9fdd61fc4303cbd4f75fb06bc261", + "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850553, + "block_time": 1729855437, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4429,22 +4429,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "37910bded92b68219f029c515e329b1be51c2af85f0a50af0d40f1efff7ae29e", + "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850549, + "block_time": 1729855433, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4453,22 +4453,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "8c511faa5a2a0e8b3e1e61d1bcb65891c664b5a79a8ca8bcc3f669a0af612bd0", + "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850545, + "block_time": 1729855430, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4477,22 +4477,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c697258e0737e981f3ead202d4f68e95418d4651ff5d44ebadffda11f5c3d9d1", + "tx_hash": "12a62f789339c67d628a9c12915903aab410aab0ef479b338d82f8e3091e9e11", "tx_index": 15, "block_index": 127, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850527, + "block_time": 1729855411, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4501,22 +4501,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850512, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4531,22 +4531,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850512, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4564,7 +4564,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4576,7 +4576,7 @@ "btc_out": 0, "btc_change": 4999985110, "btc_fee": 14890, - "rawtransaction": "020000000001015f01e20ecd61ceb9c6479a64ff565666f4f3ae65393adfc3d6209855078d4aeb00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff0200000000000000002b6a297c622f5f288f7590f25e577b6430b04c7b5ca51f7066841391bc6b8aeb6cf8a56745a31a4ff91b97b0d6b7052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "0200000000010116f1a232770af6d5f5505439dcb9d2cf3791929b28c1db61d4a6d457afa250d600000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29c96fd5991b61c73d3d690af4e6852608339044ad2ab65f62787cad4cf1eee04ad9d6a83c7c482a29fbd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4594,23 +4594,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01" + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" }, "name": "btcpay", - "data": "434e5452505254590b55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "data": "434e5452505254590bbeb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0cd5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978049, "btc_fee": 18951, - "rawtransaction": "020000000001019f6e65cac59da1021e85f3b9ca5a130aa473cade2cf2e95a2d9429db1725231e00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff03b80b000000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9600000000000000004b6a499ee6c4fa90b436a617a8526578c11eced2ec887c3b62858dad1677beb09d020f05b05d81f68d2bc318ce47b0b5d80b727e1bd1aef047b489c62b17aa0296efaf5e452e19ffc75d75f9419c052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "02000000000101801556913b0d5ae24e208195d99fc10eb45d911dc3d749c946004a33e54234a400000000160014686905953261342337f07034895a218e560b28aaffffffff03b80b000000000000160014686905953261342337f07034895a218e560b28aa00000000000000004b6a491ec27218713d127a70b550b5374ebd2311688f7896b9d896e3884b79376a11180b49a7e96c34397e4da2455a515790d2eda23e0c6c5a4b19068c5cda295709de7064fa8711dcf5dc0b419c052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", - "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "status": "valid" } } @@ -4619,7 +4619,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "quantity": 1000, "overburn": false }, @@ -4629,27 +4629,27 @@ "btc_out": 1000, "btc_change": 4999985156, "btc_fee": 13844, - "rawtransaction": "0200000000010134f5a73f10f6e6ebd7dd50967b8b9ad842ab37b34446286655c69876d111cbf900000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000" + "rawtransaction": "02000000000101204c7cf46cffafc2754dfe0a8cc18692abceb9af4538df434291c6cc40c25c4b00000000160014686905953261342337f07034895a218e560b28aaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "offer_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e" + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade" }, "name": "cancel", - "data": "434e5452505254594626a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "data": "434e5452505254594616a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985110, "btc_fee": 14890, - "rawtransaction": "0200000000010162fa678d1f005738808c038e01a03a8de6f6e582b001b3cad5fda03c3e8fb99000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff0200000000000000002b6a29738ad6bbb02abb010e9c810fafee42fa09db974117f1b4208f113e8cce59bc771c28d9d0f92de1962dd6b7052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "02000000000101e0bf2e41513d8b4619ba7e86d54ae169eafc6eb375a9792d6f54e3c74e43c6e200000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29215d331e9cda71e0df05cf5809e417a148a2b0aa5279697c6c873c0a44d46a3580c6baff60d1ee609bd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "status": "valid" } } @@ -4658,7 +4658,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4677,7 +4677,7 @@ "btc_out": 0, "btc_change": 4999985664, "btc_fee": 14336, - "rawtransaction": "0200000000010117d217b90f3103c33b7a8196b234ef73f9ee80a3dffa0f0c891a03f5c30391d500000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000226a2038ce01ab7f94cab1c53b7bd4a299b41f5b3b46d30483d8caaee7f2df0d88301900ba052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "02000000000101acfe9563247aa147ff7345fd78032f9fc16310fd2c9b16128d2815065266bbca00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000226a2088db431b6c4c9f2fb3559f147f45361ee71dea1835f3bf72703ddbb3f716320300ba052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4693,7 +4693,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4717,7 +4717,7 @@ "btc_out": 0, "btc_change": 4949919549, "btc_fee": 14951, - "rawtransaction": "02000000000101c4a579f7472a8f71fc4f7a9fe8e3c47fbf4e1ffaada164f38a6bb61e0a6612f801000000160014df2c1b5bcb6868289e28c03dca5b33ed1f8d864bffffffff0200000000000000002c6a2a8ba3e55a366b3882ab175f427b70192220df7f428cfe6aa35a37a0c5bd3cfb0e695fdca2ff552b322bcf3dc7092701000000160014df2c1b5bcb6868289e28c03dca5b33ed1f8d864b02000000000000", + "rawtransaction": "0200000000010127689fc33d59b81d7d12b10aaf9183a2be1b0a2a412e1a3be468aa9a3ec834ff010000001600148608770a6406a8a7beca45d41540c52679400f84ffffffff0200000000000000002c6a2a0d5642205c710ec6fc53b5dfb6f050249f9fd8167056f17332d28546f3bdf8435247f5a5107d7bd118993dc70927010000001600148608770a6406a8a7beca45d41540c52679400f8402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4739,14 +4739,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4765,7 +4765,7 @@ "btc_out": 0, "btc_change": 4999985602, "btc_fee": 14398, - "rawtransaction": "0200000000010135f84c0f90b4e7a75f71c696d72aea04d91d0454eacb61188c081baff4c8d46d00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000236a2183364320e7fbd27036e94fdfc5dca34ef5ae6f7ab28f69ffd4fd77ee9896c67b41c2b9052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "02000000000101cce8e52f637d6ef7002fa8d80f80a35afe711ce962d6dce62de66e04e711675800000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a21460e4f17c4ee415760dd37656c9e18a0612a98cd919da475efb4c1ca3a9a63372ac2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4782,10 +4782,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "transfer_destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "lock": false, "reset": false, @@ -4798,7 +4798,7 @@ "btc_out": 546, "btc_change": 4999982964, "btc_fee": 16490, - "rawtransaction": "02000000000101dfe6e585cc975fed17bc8b44213637548376c70e5ea7d7c5c66f77e70ce228f700000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff032202000000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec960000000000000000236a21e94abeebd5f1db9c9f7643bbf3682f05aa098f3a80a16ee21b60a43998b88a547174af052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "020000000001017072fef69154a3be8d186fe82ae4f18bf29e97570c985a34c103200916cae9ae00000000160014686905953261342337f07034895a218e560b28aaffffffff032202000000000000160014686905953261342337f07034895a218e560b28aa0000000000000000236a21e6c64dca52277f0eb1f6e4aabbbc67dcdbad286c0e6857c5d14e2d784528c6169774af052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4823,16 +4823,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", 1 ], [ "MYASSETA", - "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", 2 ] ], @@ -4840,26 +4840,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280a316fcca09b4f3cce88a33a9d6ddacac1f73ec9680291da9c4e57a7ea4919c208a3a92bcd597230dab8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280686905953261342337f07034895a218e560b28aa8090f15ced94700f317670d7d923e986e2a6e5808a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999942870, "btc_fee": 55130, - "rawtransaction": "020000000001045f01e20ecd61ceb9c6479a64ff565666f4f3ae65393adfc3d6209855078d4aeb00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff9f6e65cac59da1021e85f3b9ca5a130aa473cade2cf2e95a2d9429db1725231e00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff34f5a73f10f6e6ebd7dd50967b8b9ad842ab37b34446286655c69876d111cbf900000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff62fa678d1f005738808c038e01a03a8de6f6e582b001b3cad5fda03c3e8fb99000000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff03e80300000000000069512102026f35592a8d739db5b3f1c015d3ffb0b15511ecbc8e426b7865946e221fe763210226dde5fd6894519accecc77003867fb033becba284b5c9582b633854f4057c4d21030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aee803000000000000695121020d6f35592a8d739db59086ade71c8d6d59dca51f7c7353d3669349c28e0094c82102ca4b2dd4753d957fb6926be19fa6f58aa1021c35a7b862d7092b5d38986a500521030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aed6e816a804000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000002000002000002000000000000", + "rawtransaction": "02000000000104f9c6dfed5f07929e139887bafac0993494e637add2497138dd8009f6c16726f900000000160014686905953261342337f07034895a218e560b28aaffffffffa4476ae5786629eb181d100b95a71b1e2d92cf3bdd4d8b56aac921cff475746e00000000160014686905953261342337f07034895a218e560b28aaffffffffa4ddafcafeeed7de906289486c0404e8c2c70162607c9e0b70ce208afcde424300000000160014686905953261342337f07034895a218e560b28aaffffffff636e34616cf788484738fa14a9317d5ed924d058930efe9a7c388a88c366ab7200000000160014686905953261342337f07034895a218e560b28aaffffffff03e8030000000000006951210230322ce4131a395c7acc06dae7e2992102a38d1d2c7bd893cfcf7bfc141e4dc82103d9cc6fb00baf2a605481a1b9f0011c5ac0e86608a9e0e1feb0d02b9490c69cee2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121033f322ce4131a395c7aef71b715e69405b511ec290359b3684c6621dd9a4846ad2102f166a720faf3c7f4248e98cf80d6c579296e86ae4c606b7192984ef8fca9b0762103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aed6e816a804000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4871,7 +4871,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4888,7 +4888,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -4902,7 +4902,7 @@ "btc_out": 0, "btc_change": 4999984495, "btc_fee": 15505, - "rawtransaction": "0200000000010117d217b90f3103c33b7a8196b234ef73f9ee80a3dffa0f0c891a03f5c30391d500000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000356a3338ce01ab7f94cab1a13b7bd4a299b41f5b3b46d30483d8caaec590aa9941ef29ddc4384da6b950de1261ad04821110910b90266fb5052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "020000000001015800135236a76b4f938c410e86bb5fce9c004a5ef1922a87fc29264c8d23852100000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000356a335a780e9070f948142ebeddadeb2521a4c14e6033814daf3430c4e45fcaffb365912347bba97aeca6fe36b36500d9cee59cdab06fb5052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4924,8 +4924,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4941,19 +4941,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880291da9c4e57a7ea4919c208a3a92bcd597230dab", + "data": "434e54525052545902000000000000000100000000000003e88090f15ced94700f317670d7d923e986e2a6e5808a", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999984803, "btc_fee": 15197, - "rawtransaction": "0200000000010135f84c0f90b4e7a75f71c696d72aea04d91d0454eacb61188c081baff4c8d46d00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000306a2e83364320e7fbd27006e94fdfc5dca34ef5ae6f7a413597eede7d5ef3315223013e4603594e180159f1dcf46a9843a3b6052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "0200000000010121ffc40b4babdaf128b3d6f09a53c1bab273d4e0a734b96bf46fa00f1662747e00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000306a2ee6a649a011192806ac527ea86d0bd41bb6826d3ff4e0dcb4a01258d3abf26300ebe9279911ff91b83be6f6e0a58da3b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "memo": null, "quantity_normalized": "0.00001000" } @@ -4963,23 +4963,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480291da9c4e57a7ea4919c208a3a92bcd597230dab07ffff", + "data": "434e545250525459048090f15ced94700f317670d7d923e986e2a6e5808a07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985602, "btc_fee": 14398, - "rawtransaction": "02000000000101dfe6e585cc975fed17bc8b44213637548376c70e5ea7d7c5c66f77e70ce228f700000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000236a21e94abeebd5f1db9c8df66aa65b059c840bad1ea6a02b54734fb4331a555dd8e7c2c2b9052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "02000000000101f2fc6394b0f94ec93ecc6b55feb1eb3ec13975478af8c068601dbf94ad1ad6c000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a2143e0116dc11441d0691988addd697612becdf8b8783aa665e9d35ab6df0d163980c2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "flags": 7, "memo": "ffff" } @@ -4989,8 +4989,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "quantity": 1000 }, "name": "dispense", @@ -4999,7 +4999,7 @@ "btc_out": 1000, "btc_change": 4949837926, "btc_fee": 15074, - "rawtransaction": "020000000001016d108af9f2ecee172fff023b38502f201e6ac6eb27bf1efa69e4712c4aca0c1c02000000160014291da9c4e57a7ea4919c208a3a92bcd597230dabffffffff03e80300000000000016001440802c79e893db48415ba76f3efb225d2393458900000000000000000c6a0a37036d912a9b44ad1c7c6688082701000000160014291da9c4e57a7ea4919c208a3a92bcd597230dab02000000000000", + "rawtransaction": "02000000000101e555f1b41c7905b16de8957b97e6e9d7e259b20e03e48cc7deb22606b556d2db0200000016001490f15ced94700f317670d7d923e986e2a6e5808affffffff03e8030000000000001600141fe70fcf646daca82d24519e04b3c290bc4ee84500000000000000000c6a0a3f7d14e1676410918345668808270100000016001490f15ced94700f317670d7d923e986e2a6e5808a02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5012,7 +5012,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5043,7 +5043,7 @@ "btc_out": 0, "btc_change": 4999984741, "btc_fee": 15259, - "rawtransaction": "02000000000101c630b17989b1789ba26c49054d446cf3fd25810299ff92491c88a7b6ff3235fc00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000316a2fd5a572394e8be39998a6356d99745cdf6fd60462f6db58350e41f9a9197775cebd9ea9fece966fde74edcf011aa55965b6052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "02000000000101510bcc8fe9fc415d85811de8ac1ae712afc80811ee6750f87cf9d2ef08211ded00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000316a2fa6eada406a9ad6ffe5caadc6ef30fb264cacd56c04c540bde0825f322d3b46fd970cd37c566d9bc876347dc34a0b7665b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5078,13 +5078,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5096,7 +5096,7 @@ "btc_out": 0, "btc_change": 4999986402, "btc_fee": 13598, - "rawtransaction": "02000000000101fd8c456f3a30e0c2df5646f7929fbb8c320152ce1766496d95f4e2541e66aa6700000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff020000000000000000166a14728edf2c887212347abd7be208722fc873a05c50e2bc052a01000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000000000000", + "rawtransaction": "02000000000101ac867ba5bcd37c6200c517353d2367acd3ad91913308be7a410789f06380191000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000166a14254fef3d6914fc2e179156b6a1f67ff27f61e40fe2bc052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5111,8 +5111,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b:1", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5125,12 +5125,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317135767430656a73666b6e657565367932787735616468647634733068386d796b787536736e747c326565363536336230626137323761326536623537396461363630383465386631613536633566623064613939333638636565613433356265363739653237623a317c5843507c31303030", + "data": "434e54525052545964626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c613032646662636130646138383836613630333932636533653466316564393636316264376461373862323661316463316461653830393137613230653965313a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999914612, "btc_fee": 82388, - "rawtransaction": "0200000000010605593f86b38951fc991627b9e4c253f9aecfcec6217feafff3c8ba571880312200000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff4cd14fc52247a236c4886889a5434071626af6f5f616a4dedd0609424adcf68d00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffffcbf19debc42e554d9602800fbdf3605e4d34e467c655244c49413b4a86e7b22900000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff92303adbccb85931a488284abc068e345ac8d0436b1c721183180584f25a21d500000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffffbdb4528ef69810c1b03ac84c64a0d41e8683991b1a96419f7a958f15f03d18ee00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff1dc7714909e1c517d89d69e299ae36183dc329bfa0b5ad6324c3d2064037b15f00000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec96ffffffff04e80300000000000069512102b2450b331297f67aa5c7acf5adcc80795b2eb47f1f617f4353fec044f06c0bfd210218a81dc25f3495674dc076c05be1a9cb05ee65dc77755daa21d05b8c35b0ef5921030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aee80300000000000069512102b2450b331297f67aa5c1fef4be8f833f0f6aa579183e3b1c5cf19307a56246b021034fe80cc65f65cb600e9267c057b8fd8b5da02889617e48e220805cdf36b1e56421030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653aee8030000000000006951210398450b331297f67aa5c6fca1bd828074361b90334b3b3c153890a531955a72cb21032ad06af73e50fd033bf405f033d9c4b26e9610ea041b29d613b53eba0086dcb021030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d653ae745e22fc06000000160014a316fcca09b4f3cce88a33a9d6ddacac1f73ec9602000002000002000002000002000002000000000000", + "rawtransaction": "0200000000010605716071e675587c33579750bed5c8ec1bf237c891072db4b0e92fc18cce527100000000160014686905953261342337f07034895a218e560b28aaffffffff35a8bc7ff88a7cd9ed4a5cceaa0cc2133a6845df0d97c5ace72318c08b6584cc00000000160014686905953261342337f07034895a218e560b28aaffffffff73de384f7bc8b95be01b89efefae251fc1e175901575151136ff1a102b52f35700000000160014686905953261342337f07034895a218e560b28aafffffffff158ad7083c6009e4b0c115784f32f43de1c89d8d06beb110b6964947da9230800000000160014686905953261342337f07034895a218e560b28aaffffffffa000a6e15a6586e1bb10ae296d2fc31dbe1765ff667bf890c26b2575ec77368600000000160014686905953261342337f07034895a218e560b28aafffffffff121c74e33ad45470c87d239644e57f356d017da1ec367b7ed1400201ea62bfe00000000160014686905953261342337f07034895a218e560b28aaffffffff04e803000000000000695121026cf2c05f374b9ff0e2982577c10a457035d1aec17cf64cd05a03f625ec753534210258b52ebe440063c6e38e7a504515cd5a7dd9ec1223181f57f3a1bfa6a0b767d82103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121036cf2c05f374b9ff0e29d7770d2464c3967c0ad823bf618d94949a56bf2203c8721034ffb69be12086cc2f7dc281c564cc9027ecae447291d4f13a2a8bcf5a7e7349a2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee8030000000000006951210246f2c05f374b9ff0e2997e718244457d09e2cbce39ff1a8a2c7ac05f9411591f21022bc25f88236a08f593bd1f24347eff634fae87764d7c2a2b92918dc2c6d504072103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153ae745e22fc06000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5143,8 +5143,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5157,12 +5157,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964373932613936613561363765363162656132643733303834353738653165656133336639633763376566313236646135326266333232636664363030636536643a307c62637274317135767430656a73666b6e657565367932787735616468647634733068386d796b787536736e747c5843507c31303030", + "data": "434e54525052545964636165323331393231363530313162616431663638333863386532333037613935666664323463363633303836643361623164336339323932373265653639343a307c626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950028023, "btc_fee": 48977, - "rawtransaction": "020000000001030765a7ab8ff63d4a750be2f0e3578aff985cd653aa5bd143973ca8983d09f90901000000160014ded290140f13e50b98d2ac0374e07e04a3309a37ffffffff6a11cea79631cdbb858bbb566feb7cc1e5cacf33dd4d2fd663e8d976cad59d8600000000160014ded290140f13e50b98d2ac0374e07e04a3309a37fffffffff832233bdcd54eb34e3efc27f39744609afc6a04845d2f5a1e7f3473e6f77a0401000000160014ded290140f13e50b98d2ac0374e07e04a3309a37ffffffff04e80300000000000069512103c51710ee20064c547f6a9d93009d698e3672ca9a4de6b3a3984a69dd2850ec8e2103975968e2a3b91ac48ea94623d7dd80bf3b5c1cf664838c86446d18d0333c66e721022316b7e1e9af9df6f57e24dfe54c3075440522bcfe1a21b2aaa2cef0f6a630c253aee80300000000000069512102c51710ee20064c547f3c98c9549866886724ce9a1eb9b5ee984c7a9b7d16ea992102d1156cb2fef2199e85a95275d2c28ba47b0a4af76ad6c884533c45da3c233eb121022316b7e1e9af9df6f57e24dfe54c3075440522bcfe1a21b2aaa2cef0f6a630c253aee80300000000000069512102ef1710ee20064c547f76df9c419224c40f04fbd04bb3b5a2fa2f08ef4c67df7f2102a7615cd794817ff5ebcc2710e4bbb9dc0c3f2b9302b2beb0200c2de2515a552a21022316b7e1e9af9df6f57e24dfe54c3075440522bcfe1a21b2aaa2cef0f6a630c253aef76e0b2701000000160014ded290140f13e50b98d2ac0374e07e04a3309a3702000002000002000000000000", + "rawtransaction": "02000000000103bed92378948a8c927b0f4f30654cfb1b479559c13bde38549c7e990d6864e09d010000001600148463c20478eb8c4d7505c47952663c0554394225fffffffff8f202bf763d775bbb5d00741c9485adf494ef17fdad1a5c7863fd9266ef4a1d000000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff7b72603f4dd2f053893ff2281d5541a63914fba299dac012440bca1e81e2a262010000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff04e803000000000000695121037dfeae5b8fecddbfdff1111007d4ab43619904a5c5da9b43317a12d5fb57a46021031178599da07a77c470c1c39ab29163cad6378555a4eda67b658963f5fc4f0ad021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee803000000000000695121027dfeae5b8fecddbfdff64b435bd4af403dce03aac4d09a0e31780490ac10f8d62102527549d1fc2e2e823e9680d7b09b748f9362d409fceeee7e64ce73fcff120b5921036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee8030000000000006951210357feae5b8fecddbfdfe219150c82ad0e00e865efc1da9a42531b76e49d619ca2210222403aa5c54844f447a0faafd4f707f8e254b36397dd9e4d01ba0297cd2b39f021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aef76e0b27010000001600148463c20478eb8c4d7505c47952663c055439422502000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5178,8 +5178,8 @@ "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", - "owner": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "owner": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false, "supply": 100000000000, @@ -5187,16 +5187,16 @@ "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1729850819, - "last_issuance_block_time": 1729850819, + "first_issuance_block_time": 1729855708, + "last_issuance_block_time": 1729855708, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -5204,16 +5204,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729850663, - "last_issuance_block_time": 1729850679, + "first_issuance_block_time": 1729855560, + "last_issuance_block_time": 1729855569, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", - "owner": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "issuer": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "owner": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "divisible": true, "locked": false, "supply": 100000000000, @@ -5221,16 +5221,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729850659, - "last_issuance_block_time": 1729850659, + "first_issuance_block_time": 1729855557, + "last_issuance_block_time": 1729855557, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 100000000000, @@ -5238,16 +5238,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729850616, - "last_issuance_block_time": 1729850616, + "first_issuance_block_time": 1729855510, + "last_issuance_block_time": 1729855510, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 40, @@ -5255,8 +5255,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729850556, - "last_issuance_block_time": 1729850561, + "first_issuance_block_time": 1729855441, + "last_issuance_block_time": 1729855445, "supply_normalized": "0.00000040" } ], @@ -5268,8 +5268,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 10000000000, @@ -5277,15 +5277,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729850509, - "last_issuance_block_time": 1729850519, + "first_issuance_block_time": 1729855391, + "last_issuance_block_time": 1729855402, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5293,14 +5293,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5308,7 +5308,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5321,7 +5321,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5343,9 +5343,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5360,7 +5360,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729850698, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5386,9 +5386,9 @@ }, { "tx_index": 51, - "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5403,7 +5403,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729850771, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5429,9 +5429,9 @@ }, { "tx_index": 57, - "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5446,7 +5446,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729850796, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5472,9 +5472,9 @@ }, { "tx_index": 59, - "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5489,7 +5489,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729850800, + "block_time": 1729855691, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5515,9 +5515,9 @@ }, { "tx_index": 52, - "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "block_index": 187, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5532,7 +5532,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729850768, + "block_time": 1729855657, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5563,13 +5563,13 @@ "/v2/assets//matches": { "result": [ { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", - "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5583,7 +5583,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729850771, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5603,13 +5603,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5623,7 +5623,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729850768, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5643,13 +5643,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "tx0_index": 49, - "tx0_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 50, - "tx1_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5663,7 +5663,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729850698, + "block_time": 1729855589, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5690,20 +5690,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850805, + "block_time": 1729855694, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5711,20 +5711,20 @@ }, { "block_index": 125, - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "5995abf06d1fac2feff561f2aa0e119f80e426cc3b7869eef237ea5ec8db72a7", + "event": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850519, + "block_time": 1729855402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5732,20 +5732,20 @@ }, { "block_index": 124, - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850516, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5753,20 +5753,20 @@ }, { "block_index": 124, - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "event": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850516, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5778,16 +5778,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850516, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5805,12 +5805,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -5822,16 +5822,16 @@ }, { "block_index": 198, - "address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", "quantity": 50000000, "action": "issuance fee", - "event": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "event": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "tx_index": 64, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850819, + "block_time": 1729855708, "asset_info": { "divisible": true, "asset_longname": null, @@ -5843,16 +5843,16 @@ }, { "block_index": 195, - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "event": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850809, + "block_time": 1729855698, "asset_info": { "divisible": true, "asset_longname": null, @@ -5864,16 +5864,16 @@ }, { "block_index": 194, - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850805, + "block_time": 1729855694, "asset_info": { "divisible": true, "asset_longname": null, @@ -5885,16 +5885,16 @@ }, { "block_index": 194, - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850805, + "block_time": 1729855694, "asset_info": { "divisible": true, "asset_longname": null, @@ -5912,20 +5912,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729850637, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -5947,14 +5947,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "5995abf06d1fac2feff561f2aa0e119f80e426cc3b7869eef237ea5ec8db72a7", + "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -5969,20 +5969,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729850519, + "block_time": 1729855402, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -5997,20 +5997,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729850516, + "block_time": 1729855399, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -6025,20 +6025,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729850512, + "block_time": 1729855395, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -6053,7 +6053,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729850509, + "block_time": 1729855391, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6065,10 +6065,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6076,7 +6076,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -6089,10 +6089,10 @@ }, { "tx_index": 56, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6100,7 +6100,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "divisible": true, "asset_longname": null, @@ -6113,10 +6113,10 @@ }, { "tx_index": 55, - "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0", + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", "block_index": 189, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -6124,7 +6124,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850775, + "block_time": 1729855675, "asset_info": { "divisible": true, "asset_longname": null, @@ -6137,10 +6137,10 @@ }, { "tx_index": 44, - "tx_hash": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489", + "tx_hash": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", "block_index": 157, - "source": "047af7e673347f1e5a2f5d84046afc9a604497f327fc3e4eb34ed5dc3b2332f8:0", - "destination": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "source": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", + "destination": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6148,7 +6148,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850659, + "block_time": 1729855557, "asset_info": { "divisible": true, "asset_longname": null, @@ -6161,10 +6161,10 @@ }, { "tx_index": 43, - "tx_hash": "047af7e673347f1e5a2f5d84046afc9a604497f327fc3e4eb34ed5dc3b2332f8", + "tx_hash": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b", "block_index": 156, - "source": "d25eb60aa5a4aa805a1d652ee8e63404d2df9ed8401720787c6beae09eec316f:0", - "destination": "047af7e673347f1e5a2f5d84046afc9a604497f327fc3e4eb34ed5dc3b2332f8:0", + "source": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", + "destination": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6172,7 +6172,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850654, + "block_time": 1729855552, "asset_info": { "divisible": true, "asset_longname": null, @@ -6191,9 +6191,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6202,7 +6202,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6212,7 +6212,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -6228,9 +6228,9 @@ }, { "tx_index": 29, - "tx_hash": "9ab8c44122844663eabc411ff3443b2025b4d1faa256a7497c31052d1f07e3eb", + "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", "block_index": 142, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6239,7 +6239,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6249,7 +6249,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850583, + "block_time": 1729855466, "asset_info": { "divisible": true, "asset_longname": null, @@ -6265,9 +6265,9 @@ }, { "tx_index": 30, - "tx_hash": "2b483dd9a65666f5548c936d667508c8b3edaf1a472c29a7999c2755abecc717", + "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", "block_index": 150, - "source": "mvfH8EzCtwp8Ju3Xq6hGzBsRbfjEeHPeoo", + "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6275,10 +6275,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "9e1effc8449b42dd438262bc0b50947f9a5e585a9e65dd7894b0247a39de0f36", - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6286,7 +6286,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850623, + "block_time": 1729855529, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,18 +6302,18 @@ }, { "tx_index": 33, - "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6323,7 +6323,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -6344,9 +6344,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6355,7 +6355,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6365,7 +6365,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -6393,7 +6393,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6401,7 +6401,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6410,7 +6410,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6418,7 +6418,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6427,7 +6427,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6435,7 +6435,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6444,7 +6444,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6459,27 +6459,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6494,7 +6494,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -6508,27 +6508,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "869dd5ca76d9e863d62f4ddd33cfcae5c17ceb6f56bb8b85bbcd3196a7ce116a", + "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", "block_index": 147, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "destination": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6543,7 +6543,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729850613, + "block_time": 1729855507, "asset_info": { "divisible": true, "asset_longname": null, @@ -6557,19 +6557,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6577,7 +6577,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6592,7 +6592,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -6606,19 +6606,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6626,7 +6626,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6641,7 +6641,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850575, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -6662,8 +6662,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "owner": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false, "supply": 0, @@ -6671,8 +6671,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729850676, - "last_issuance_block_time": 1729850676, + "first_issuance_block_time": 1729855564, + "last_issuance_block_time": 1729855564, "supply_normalized": "0.00000000" } ], @@ -6682,10 +6682,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6710,7 +6710,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729850519, + "block_time": 1729855402, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6728,22 +6728,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "5995abf06d1fac2feff561f2aa0e119f80e426cc3b7869eef237ea5ec8db72a7", + "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", "tx_index": 13, "block_index": 125, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", - "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850519, + "block_time": 1729855402, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6752,22 +6752,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150", + "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", "tx_index": 12, "block_index": 124, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", - "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850516, + "block_time": 1729855399, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6776,22 +6776,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850512, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6806,22 +6806,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "6dfe1652320919796e5f170618810e022b48c36ab333761e4607337784ac848f", + "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", "tx_index": 11, "block_index": 123, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850512, + "block_time": 1729855395, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -6837,9 +6837,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6854,7 +6854,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729850698, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6880,9 +6880,9 @@ }, { "tx_index": 52, - "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "block_index": 187, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6897,7 +6897,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729850768, + "block_time": 1729855657, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6923,9 +6923,9 @@ }, { "tx_index": 51, - "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6940,7 +6940,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729850771, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6966,9 +6966,9 @@ }, { "tx_index": 54, - "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "block_index": 188, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6983,7 +6983,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729850771, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7009,9 +7009,9 @@ }, { "tx_index": 57, - "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7026,7 +7026,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729850796, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7057,9 +7057,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7074,7 +7074,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729850800, + "block_time": 1729855691, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7102,13 +7102,13 @@ "/v2/orders//matches": { "result": [ { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", - "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7122,7 +7122,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729850771, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7142,13 +7142,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7162,7 +7162,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729850768, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7189,15 +7189,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "btc_amount": 2000, - "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "status": "valid", "confirmed": true, - "block_time": 1729850768, + "block_time": 1729855657, "btc_amount_normalized": "0.00002000" } ], @@ -7208,9 +7208,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "block_index": 187, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7228,7 +7228,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729850768, + "block_time": 1729855657, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7254,9 +7254,9 @@ }, { "tx_index": 54, - "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "block_index": 188, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7274,7 +7274,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729850771, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7300,9 +7300,9 @@ }, { "tx_index": 49, - "tx_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", + "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", "block_index": 184, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7320,7 +7320,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729850698, + "block_time": 1729855589, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7346,9 +7346,9 @@ }, { "tx_index": 51, - "tx_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "block_index": 188, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7366,7 +7366,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729850771, + "block_time": 1729855661, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7392,9 +7392,9 @@ }, { "tx_index": 57, - "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", "block_index": 192, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7412,7 +7412,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729850796, + "block_time": 1729855686, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7443,13 +7443,13 @@ "/v2/orders///matches": { "result": [ { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", - "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7466,7 +7466,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729850771, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7486,13 +7486,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7509,7 +7509,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729850768, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7529,13 +7529,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "tx0_index": 49, - "tx0_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 50, - "tx1_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7552,7 +7552,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729850698, + "block_time": 1729855589, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7578,13 +7578,13 @@ "/v2/order_matches": { "result": [ { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 54, - "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", - "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7598,7 +7598,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729850771, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7618,13 +7618,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "tx0_index": 51, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 52, - "tx1_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7638,7 +7638,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729850768, + "block_time": 1729855657, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7658,13 +7658,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", + "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", "tx0_index": 49, - "tx0_hash": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx1_index": 50, - "tx1_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7678,7 +7678,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729850698, + "block_time": 1729855589, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7723,66 +7723,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "19ac57f341a56378548a660b5982a7937163b3ba0509160d379c719ef5778b72", + "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", "block_index": 121, - "source": "bcrt1qyy00zkcnzhrwx3vkjasfktxa6954zr7aw8na5g", + "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729850504, + "block_time": 1729855388, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "2969e52007c8e874e8554a7ef478d800d266c94492d420fd72b84ff23087f081", + "tx_hash": "bb77500fb17e02a3f324c796f3006a7e396f91a1196457dac24c5fe2b026448e", "block_index": 120, - "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729850500, + "block_time": 1729855383, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "2a6a284564f83882bddf0cbedc47b86de1d7ddd9b2d9c1bc3cd2b5193a39f1a9", + "tx_hash": "05f1080bccd39ab5fa23b2ab46d89ac1dea3accb7bd16e62c5120cbc3752b473", "block_index": 119, - "source": "bcrt1qwwnd2kd9kldtrvser645xc45f0vf9d95qcxyjp", + "source": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729850497, + "block_time": 1729855380, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "b126033e8991f5a8c2971430ff299e3f23554d9c26537a1ae489ff42f712045b", + "tx_hash": "a699fe034995e346de923ef0036e71abf388c1f37cba8072eb1cd86f30a510d8", "block_index": 118, - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729850493, + "block_time": 1729855377, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d7acbf2824a108f9f79c9c624de019b3a5c2f65f6f944ee761ddbef1fdce775c", + "tx_hash": "fd379debba78df37b4640be27952adc4e58fef0f396e33c089a43fb778c7e7ca", "block_index": 117, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729850489, + "block_time": 1729855374, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7794,9 +7794,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7805,7 +7805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7815,7 +7815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -7831,9 +7831,9 @@ }, { "tx_index": 29, - "tx_hash": "9ab8c44122844663eabc411ff3443b2025b4d1faa256a7497c31052d1f07e3eb", + "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", "block_index": 142, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7842,7 +7842,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7852,7 +7852,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850583, + "block_time": 1729855466, "asset_info": { "divisible": true, "asset_longname": null, @@ -7868,9 +7868,9 @@ }, { "tx_index": 30, - "tx_hash": "2b483dd9a65666f5548c936d667508c8b3edaf1a472c29a7999c2755abecc717", + "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", "block_index": 150, - "source": "mvfH8EzCtwp8Ju3Xq6hGzBsRbfjEeHPeoo", + "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7878,10 +7878,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "9e1effc8449b42dd438262bc0b50947f9a5e585a9e65dd7894b0247a39de0f36", - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7889,7 +7889,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850623, + "block_time": 1729855529, "asset_info": { "divisible": true, "asset_longname": null, @@ -7905,9 +7905,9 @@ }, { "tx_index": 62, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7916,7 +7916,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7926,11 +7926,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850816, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -7942,18 +7942,18 @@ }, { "tx_index": 33, - "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7963,7 +7963,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -7984,9 +7984,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7995,7 +7995,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8005,7 +8005,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -8025,19 +8025,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8045,7 +8045,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8060,7 +8060,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -8074,19 +8074,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8094,7 +8094,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8109,7 +8109,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850575, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -8128,20 +8128,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729850637, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -8162,20 +8162,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729850637, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -8198,12 +8198,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "tx_index": 41, - "utxo": "d25eb60aa5a4aa805a1d652ee8e63404d2df9ed8401720787c6beae09eec316f:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "utxo": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "confirmed": true, - "block_time": 1729850637, + "block_time": 1729855544, "asset_info": { "divisible": true, "asset_longname": null, @@ -8215,16 +8215,16 @@ }, { "block_index": 154, - "address": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "address": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729850637, + "block_time": 1729855544, "asset_info": { "divisible": true, "asset_longname": null, @@ -8245,27 +8245,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", - "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", - "block_time": 1729850846 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null, "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68 }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 601, @@ -8274,14 +8274,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -8292,9 +8292,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 600, @@ -8303,9 +8303,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -8315,24 +8315,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -8342,9 +8342,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 598, @@ -8356,15 +8356,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", - "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", - "block_time": 1729850846 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null, "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } }, "/v2/events/counts": { @@ -8399,16 +8399,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -8418,9 +8418,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 597, @@ -8430,12 +8430,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -8445,9 +8445,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 594, @@ -8457,24 +8457,24 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", - "utxo_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "block_time": 1729850846, + "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 }, { "event_index": 587, @@ -8484,24 +8484,24 @@ "asset": "UTXOASSET", "block_index": 200, "calling_function": "utxo move", - "event": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "event": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", "quantity": 1000000000, "tx_index": 67, - "utxo": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8:0", - "utxo_address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", - "block_time": 1729850833, + "utxo": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "utxo_address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "block_time": 1729855721, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" }, - "tx_hash": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", "block_index": 200, - "block_time": 1729850833 + "block_time": 1729855721 }, { "event_index": 584, @@ -8511,24 +8511,24 @@ "asset": "UTXOASSET", "block_index": 200, "calling_function": "utxo move", - "event": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", + "event": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", "quantity": 1000000000, "tx_index": 66, - "utxo": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0", - "utxo_address": "bcrt1qwwnd2kd9kldtrvser645xc45f0vf9d95qcxyjp", - "block_time": 1729850833, + "utxo": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", + "utxo_address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", + "block_time": 1729855721, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" }, - "tx_hash": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", + "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", "block_index": 200, - "block_time": 1729850833 + "block_time": 1729855721 } ], "next_cursor": 575, @@ -8545,27 +8545,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8580,7 +8580,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -8594,19 +8594,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "1c0cca4a2c71e469fa1ebf27ebc66a1e202f50383b02ff2f17eeecf2f98a106d", + "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8614,7 +8614,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8629,11 +8629,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850816, + "block_time": 1729855705, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -8643,27 +8643,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "869dd5ca76d9e863d62f4ddd33cfcae5c17ceb6f56bb8b85bbcd3196a7ce116a", + "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", "block_index": 147, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "destination": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "last_status_tx_hash": null, - "origin": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8678,7 +8678,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729850613, + "block_time": 1729855507, "asset_info": { "divisible": true, "asset_longname": null, @@ -8692,19 +8692,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6dadc35e897d9feacab080eec60e7ca20689bf42710d5c936e0ad8ac899fcf1a", + "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8712,7 +8712,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8727,7 +8727,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850579, + "block_time": 1729855463, "asset_info": { "divisible": true, "asset_longname": null, @@ -8741,19 +8741,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "a912e9d6ae146575e1a98d8fa72a76686488230708c79953cb1b9f9239ca0913", + "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", "block_index": 140, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2d3245123a22e68d696b0dfb0fc70e762c6f18d330da7c9eaec88a651860a769", + "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8761,7 +8761,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8776,7 +8776,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729850575, + "block_time": 1729855460, "asset_info": { "divisible": true, "asset_longname": null, @@ -8795,10 +8795,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8806,7 +8806,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -8819,10 +8819,10 @@ }, { "tx_index": 68, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8830,11 +8830,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -8843,10 +8843,10 @@ }, { "tx_index": 67, - "tx_hash": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", + "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", "block_index": 200, - "source": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0", - "destination": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8:0", + "source": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", + "destination": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -8854,11 +8854,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850833, + "block_time": 1729855721, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, @@ -8867,10 +8867,10 @@ }, { "tx_index": 66, - "tx_hash": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", + "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", "block_index": 200, - "source": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a:1", - "destination": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4:0", + "source": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", + "destination": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -8878,11 +8878,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850833, + "block_time": 1729855721, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, @@ -8891,10 +8891,10 @@ }, { "tx_index": 65, - "tx_hash": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a", + "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", "block_index": 199, - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", - "destination": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a:1", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -8902,11 +8902,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729850823, + "block_time": 1729855711, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, @@ -8921,14 +8921,14 @@ "result": [ { "tx_index": 64, - "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "transfer": false, "callable": false, "call_date": 0, @@ -8943,20 +8943,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850819, + "block_time": 1729855708, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "3a325e3de03c9a43fc50faf98987a6fe87bd0cc3fe706355a4bfb1d8da3a55e5", + "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -8971,20 +8971,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850684, + "block_time": 1729855573, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "7ae27b895f098742950f4610fcb9a08fb513f92640963d639115ff2123db9dfa", + "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -8999,20 +8999,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729850679, + "block_time": 1729855569, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "089369c1dee481bc5080c8ab2adf4f8c76db0532d6eea832bc0e5b998fc819c8", + "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -9027,20 +9027,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850676, + "block_time": 1729855564, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d0b4b9e01aa2c628346cb7dd0e399fc87063595a737e77e264e74d75edc5282f", + "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "transfer": false, "callable": false, "call_date": 0, @@ -9055,7 +9055,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850663, + "block_time": 1729855560, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -9066,14 +9066,14 @@ "/v2/issuances/": { "result": { "tx_index": 64, - "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "transfer": false, "callable": false, "call_date": 0, @@ -9088,7 +9088,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729850819, + "block_time": 1729855708, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9097,16 +9097,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729850805, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -9117,16 +9117,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729850805, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" } ], @@ -9137,9 +9137,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "block_index": 138, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9147,14 +9147,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729850567, + "block_time": 1729855452, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "a271e5d21093222bb06408c7f0316479daa91351b4cd0ca7fc02937d53daf8e4", + "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", "block_index": 137, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9162,7 +9162,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729850564, + "block_time": 1729855449, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9172,9 +9172,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "block_index": 138, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9182,17 +9182,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729850567, + "block_time": 1729855452, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9217,7 +9217,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729850651, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9226,10 +9226,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "tx_index": 22, "block_index": 135, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9254,7 +9254,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729850556, + "block_time": 1729855441, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9266,10 +9266,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "tx_index": 18, "block_index": 131, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9294,7 +9294,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729850542, + "block_time": 1729855425, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9306,10 +9306,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9334,7 +9334,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729850538, + "block_time": 1729855421, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9346,10 +9346,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "8a1be755718a87c8036c02f0990ec81580cec0175bf942c7d0cfe64cf0edc4fe", + "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9374,7 +9374,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729850519, + "block_time": 1729855402, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9392,22 +9392,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850561, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9416,22 +9416,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "63ce3c734541047cfdb7c0e069471c264cbb9fdd61fc4303cbd4f75fb06bc261", + "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", "tx_index": 21, "block_index": 134, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850553, + "block_time": 1729855437, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9440,22 +9440,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "37910bded92b68219f029c515e329b1be51c2af85f0a50af0d40f1efff7ae29e", + "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", "tx_index": 20, "block_index": 133, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850549, + "block_time": 1729855433, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9464,22 +9464,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "8c511faa5a2a0e8b3e1e61d1bcb65891c664b5a79a8ca8bcc3f669a0af612bd0", + "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", "tx_index": 19, "block_index": 132, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "e73ed1e655a14194e46e12748a991d733d950cb186cb19939d906d529443abe6", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850545, + "block_time": 1729855430, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9488,22 +9488,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d17ef6321b142aa2f5c375767f91f4478823990548d9d4651ef2bff529a811fb", + "tx_hash": "89950732f61146e284657ed8a261debb58ae756e387a2be32e820051300a6e9e", "tx_index": 17, "block_index": 129, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", - "fairminter_tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850535, + "block_time": 1729855418, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9517,22 +9517,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, "block_index": 136, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729850561, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -9549,8 +9549,8 @@ "value": 4949934500, "confirmations": 2, "amount": 49.499345, - "txid": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4", - "address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl" + "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" }, { "vout": 0, @@ -9558,8 +9558,8 @@ "value": 5460, "confirmations": 2, "amount": 5.46e-05, - "txid": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8", - "address": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl" + "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" }, { "vout": 2, @@ -9567,8 +9567,8 @@ "value": 100000, "confirmations": 45, "amount": 0.001, - "txid": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489", - "address": "bcrt1qwwnd2kd9kldtrvser645xc45f0vf9d95qcxyjp" + "txid": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", + "address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8" } ], "next_cursor": null, @@ -9577,28 +9577,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01" + "tx_hash": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e" }, { - "tx_hash": "fed339fb20854750cdfa4eb1ecf8f3a3810f6c4cda00fa5d2449f0331f9c0c31" + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038" }, { - "tx_hash": "0e7c12de66f7135a11e938fdf931014e611f65f1ce66ab243648f3dc5fb7e150" + "tx_hash": "58b515d7a93d1780a591bce9f0aa3cda6fd05a4b8bba4333b5827c826266373d" }, { - "tx_hash": "87fb5435db15729019d290162db45cd405d65a62f7d6244f37565c79f737b452" + "tx_hash": "dcb7462dcbd114ef7fc72873f9619957cbebfd2828b2e09b938a3849a689fd85" }, { - "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0" + "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc" }, { - "tx_hash": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9" + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6" }, { - "tx_hash": "0f4986a984e328828f33ccbac8369a3e45964d454f4c72395b08a41326ac35da" + "tx_hash": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db" }, { - "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9" + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" } ], "next_cursor": null, @@ -9606,8 +9606,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 4, - "tx_hash": "9149fa8338fca299ef1a1c9755aa6625db519bfb9cee4730ecb14ab7c7c7b3e2" + "block_index": 9, + "tx_hash": "65f8c1c8e7da91338163ee40b6b4d0e95ea48fb578b77e5aa052ff7329046db0" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9618,7 +9618,7 @@ "value": 4949934500, "confirmations": 2, "amount": 49.499345, - "txid": "f812660a1eb66b8af364a1adfa1f4ebf7fc4e3e89f7a4ffc718f2a47f779a5c4" + "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827" }, { "vout": 0, @@ -9626,17 +9626,17 @@ "value": 5460, "confirmations": 2, "amount": 5.46e-05, - "txid": "e2f1d845dd462ef995905d1212acc9ae237286b490a05d11f16af44c5cd699e8" + "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "030743b0546a59cdd87698e02a04302a9c769af97fea48ba23fbe8d378ccd512d6" + "result": "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" }, "/v2/bitcoin/transactions/": { - "result": "020000000001018964dc58bd72f60c856d20ac48e099ae298c494f9fdf949c4834ca10dc8029cb0100000000ffffffff03e803000000000000160014ded290140f13e50b98d2ac0374e07e04a3309a3700000000000000000c6a0a20cf5e6976674b0e61c3dced0827010000001600142177c7e2f5e04bda4da685d80a7abbd091f75a1f024730440220525ee6921ecc52f42e69485fbcf539037e2ebad077280a163c2f9b18734cc549022067954ba9c8a39bc664fe98fa61c027860b4fd167231b8720a6dedd87f7a2603501210369db83b02344e1e52dc19ddc848d3ce76b61483606f4cc6548d59963e7c1391d00000000" + "result": "0200000000010168c1dca088790815d9440f3ed3202ca96829935d5d4fbafd1baa4ba3a514c5ef0100000000ffffffff03e8030000000000001600148463c20478eb8c4d7505c47952663c055439422500000000000000000c6a0a5dbc4e444c8895f99bcddced08270100000016001431beb4e814e8733a24cb4bb6b84dcd898b279b4b0247304402201beacf53d1eb4beaa64f76eeb35851b0b1026eae662b2e4c7b25f653a8ca512a02207c14028ed5ef9c984b157c5cc554ab8e02ec8a6a625d178a73c86ac4f4600dfd012102fa89c64bb5ccf3ece97b15aeef067ec0be07538e53088f9654a4e0aba704801b00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 61530 @@ -9659,27 +9659,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69 }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "quantity": 10000, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69, "asset_info": { "divisible": true, @@ -9690,22 +9690,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -9715,22 +9715,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "block_index": 201, - "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -9740,30 +9740,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729850850.9548645, + "block_time": 1729855738.770461, "btc_amount": 0, - "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "destination": "", "fee": 10000, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69, - "utxos_info": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027:1", + "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -9777,7 +9777,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 } ], "next_cursor": null, @@ -9786,19 +9786,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -9808,7 +9808,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 } ], "next_cursor": null, @@ -9817,27 +9817,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69 }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "quantity": 10000, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69, "asset_info": { "divisible": true, @@ -9848,22 +9848,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "CREDIT", "params": { - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -9873,22 +9873,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "asset": "XCP", "block_index": 201, - "event": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -9898,30 +9898,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 }, { - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729850850.9548645, + "block_time": 1729855738.770461, "btc_amount": 0, - "data": "020000000000000001000000000000271080eb472b0f059e3530f96c78f820b8c9b3cf7ac97c", + "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", "destination": "", "fee": 10000, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", - "tx_hash": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", "tx_index": 69, - "utxos_info": "573c4aa398e3648fa7c61986eb3ac8cee9c9f45b4245601e107a7f140671c027:1", + "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "memo": null, "asset_info": { "divisible": true, @@ -9935,7 +9935,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729850850.9548645 + "timestamp": 1729855738.770461 } ], "next_cursor": null, @@ -9957,15 +9957,15 @@ "event_index": 590, "event": "NEW_BLOCK", "params": { - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", "block_index": 201, - "block_time": 1729850846, + "block_time": 1729855734, "difficulty": 545259519, - "previous_block_hash": "59d1612e631584dcc14c9f7c8dce05eb54f88cd8e8ad5df6cdd79b4fad467bca" + "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4" }, "tx_hash": null, "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 580, @@ -9977,17 +9977,17 @@ "event_index": 591, "event": "NEW_TRANSACTION", "params": { - "block_hash": "582baf3107792b6178b107a82c3bc27fb8a8f992c951db355a5a75d719f4af58", + "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", "block_index": 201, - "block_time": 1729850846, + "block_time": 1729855734, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "fee": 0, - "source": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "utxos_info": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1 792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9997,9 +9997,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 582, @@ -10013,16 +10013,16 @@ "params": { "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "out_index": 0, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 558, @@ -10035,15 +10035,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "d29a47cd9e8de8adbaaecbadb526ed879d26fdb9c2dcb32c1570d8798d934b30", - "messages_hash": "719c075577a3b57c5007022a4960ede25fce51965e23ce5780ca91d30519e674", + "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", + "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", "transaction_count": 1, - "txlist_hash": "5c811741282b13befe50d33bf066d6c20076222fb79ccf569bed5b0d0ecaa5e6", - "block_time": 1729850846 + "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", + "block_time": 1729855734 }, "tx_hash": null, "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 589, @@ -10056,12 +10056,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68 }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 578, @@ -10077,12 +10077,12 @@ "address": null, "asset": "XCP", "block_index": 201, - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 1500000000, "tx_index": 68, - "utxo": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", - "utxo_address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", - "block_time": 1729850846, + "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -10092,9 +10092,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 593, @@ -10106,16 +10106,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -10125,9 +10125,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 597, @@ -10141,14 +10141,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "memo": null, "quantity": 10000, - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "status": "valid", - "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0", + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", "tx_index": 55, - "block_time": 1729850775, + "block_time": 1729855675, "asset_info": { "divisible": true, "asset_longname": null, @@ -10158,9 +10158,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "9975afc57eed56741ca00cda0cd40a90081f2f5cf059ab005301a360bf4cc8a0", + "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", "block_index": 189, - "block_time": 1729850775 + "block_time": 1729855675 } ], "next_cursor": null, @@ -10174,15 +10174,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "valid", - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "tx_index": 56, - "block_time": 1729850778, + "block_time": 1729855679, "asset_info": { "divisible": true, "asset_longname": null, @@ -10192,9 +10192,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5f3aa6534944e575cf533164611e63d3f68d1970972cd5f0eb43c7b1a2051959", + "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", "block_index": 190, - "block_time": 1729850778 + "block_time": 1729855679 } ], "next_cursor": 509, @@ -10217,20 +10217,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "status": "valid", - "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "tx_index": 60, - "block_time": 1729850805, + "block_time": 1729855694, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "5330f625b1e5da78b89f4fb829a03f1436187afb901980569ad8011805ae95e9", + "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", "block_index": 194, - "block_time": 1729850805 + "block_time": 1729855694 } ], "next_cursor": null, @@ -10247,15 +10247,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "valid", - "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "tx_index": 41, - "block_time": 1729850637, + "block_time": 1729855544, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10269,9 +10269,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "edee38ed3fedd8ed161ec0288f3495cc89c87c0f3121eda2fabe540a42ad4bad", + "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", "block_index": 154, - "block_time": 1729850637 + "block_time": 1729855544 } ], "next_cursor": null, @@ -10292,11 +10292,11 @@ "asset_longname": null, "asset_name": "UTXOASSET", "block_index": 198, - "block_time": 1729850819 + "block_time": 1729855708 }, - "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "block_index": 198, - "block_time": 1729850819 + "block_time": 1729855708 } ], "next_cursor": 394, @@ -10319,22 +10319,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "status": "valid", "transfer": false, - "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "tx_index": 64, - "block_time": 1729850819, + "block_time": 1729855708, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "03020a158bbf5d93767ec0cd9ea2e776ec6f6bf147e677b47eda8c8003f7174c", + "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", "block_index": 198, - "block_time": 1729850819 + "block_time": 1729855708 } ], "next_cursor": 395, @@ -10349,12 +10349,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qgzqzc70gj0d5ss2m5ahna7ezt53ex3vfjrutms", + "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", "status": "valid", "tag": "64657374726f79", - "tx_hash": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "tx_index": 61, - "block_time": 1729850809, + "block_time": 1729855698, "asset_info": { "divisible": true, "asset_longname": null, @@ -10364,9 +10364,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "397cd56bfc18e4e32b66e7b3262696e2ad653601889f5961baa3b841d04f96a3", + "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", "block_index": 195, - "block_time": 1729850809 + "block_time": 1729855698 } ], "next_cursor": 157, @@ -10391,11 +10391,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "open", - "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "tx_index": 59, - "block_time": 1729850800, + "block_time": 1729855691, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10419,9 +10419,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "26a79e38c7ce1dc438e1172cf45f67b1c935142784b7a295f3967951a50e710e", + "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", "block_index": 193, - "block_time": 1729850800 + "block_time": 1729855691 } ], "next_cursor": 516, @@ -10439,20 +10439,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd", + "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", "tx0_index": 51, - "tx1_address": "bcrt1qadrjkrc9nc6np7tv0ruzpwxfk08h4jtuxd80dz", + "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "tx1_index": 54, - "block_time": 1729850771, + "block_time": 1729855661, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10471,9 +10471,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "42ce0c24bb33c9c48ca1ecd8670eddc73337b8c311c0d3509c3abab168bc6c01", + "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", "block_index": 188, - "block_time": 1729850771 + "block_time": 1729855661 } ], "next_cursor": 475, @@ -10486,11 +10486,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302" + "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b" }, - "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_time": 1729850796 + "block_time": 1729855686 } ], "next_cursor": 490, @@ -10503,11 +10503,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3" + "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92" }, - "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "block_time": 1729850768 + "block_time": 1729855657 } ], "next_cursor": null, @@ -10519,13 +10519,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", - "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", + "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", "status": "completed" }, - "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "block_time": 1729850768 + "block_time": 1729855657 } ], "next_cursor": 454, @@ -10539,18 +10539,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "order_match_id": "55e2441265987dfd402ebde634257589795a3024ce4c3582b4a00feadabf78dd_de2a33ea96179c55bf09daa935b1ad6fc6ccee3aa70bce2aa4e05d4e22fa0ab3", - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "status": "valid", - "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "tx_index": 53, - "block_time": 1729850768, + "block_time": 1729855657, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6a9da3df1740d6381c4fc82f71679d3d31aaa4a365dc6740541fbd87c70e8044", + "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", "block_index": 187, - "block_time": 1729850768 + "block_time": 1729855657 } ], "next_cursor": null, @@ -10563,16 +10563,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "58d891e2a580bec199bf727d3702fa7cedc615b9fb07fd24883c375edd68f302", - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": "valid", - "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "tx_index": 58, - "block_time": 1729850796 + "block_time": 1729855686 }, - "tx_hash": "0058a7bde34d501d9ef40819b984852f6f01ea9786eb1cfdcadf33bd07b82c8a", + "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", "block_index": 192, - "block_time": 1729850796 + "block_time": 1729855686 } ], "next_cursor": null, @@ -10585,13 +10585,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "block_time": 1729850698 + "order_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "block_time": 1729855589 }, "tx_hash": null, "block_index": 184, - "block_time": 1729850698 + "block_time": 1729855589 } ], "next_cursor": 460, @@ -10604,14 +10604,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "5beb86f7e7fdf5e47fbcb052ff3b96de982537c35694c90028e620eabf073fad_03de4b98d9edda5a440280582455e0eda9fef9b3019c8db85c4484bf46d0804d", - "tx0_address": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "tx1_address": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", - "block_time": 1729850698 + "order_match_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "block_time": 1729855589 }, "tx_hash": null, "block_index": 184, - "block_time": 1729850698 + "block_time": 1729855589 } ], "next_cursor": null, @@ -10630,17 +10630,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "satoshirate": 1, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "status": 0, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "tx_index": 62, - "block_time": 1729850812, + "block_time": 1729855702, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10649,9 +10649,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "2ee6563b0ba727a2e6b579da66084e8f1a56c5fb0da99368ceea435be679e27b", + "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", "block_index": 196, - "block_time": 1729850812 + "block_time": 1729855702 } ], "next_cursor": 272, @@ -10666,9 +10666,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": 0, - "tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", + "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", "asset_info": { "divisible": true, "asset_longname": null, @@ -10678,9 +10678,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 560, @@ -10694,13 +10694,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mvfH8EzCtwp8Ju3Xq6hGzBsRbfjEeHPeoo", + "destination": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", "dispense_quantity": 10, - "dispenser_tx_hash": "2b483dd9a65666f5548c936d667508c8b3edaf1a472c29a7999c2755abecc717", - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", - "tx_hash": "fc7f709809d6f2bddabc5df0411e3b1ade7efb063817ade54b014f9c6b65f104", + "dispenser_tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx_hash": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", "tx_index": 31, - "block_time": 1729850601, + "block_time": 1729855485, "asset_info": { "divisible": true, "asset_longname": null, @@ -10710,9 +10710,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "fc7f709809d6f2bddabc5df0411e3b1ade7efb063817ade54b014f9c6b65f104", + "tx_hash": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", "block_index": 144, - "block_time": 1729850601 + "block_time": 1729855485 } ], "next_cursor": null, @@ -10727,14 +10727,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qy9mu0ch4up9a5ndxshvq574m6zglwksly6a0rm", + "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "09f9093d98a83c9743d15baa53d65c98ff8a57e3f0e20b754a3df68faba76507", - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -10745,9 +10745,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 561, @@ -10762,19 +10762,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qmmffq9q0z0jshxxj4sphfcr7qj3npx3hq4e35y", + "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "tx_index": 25, "value": 66600.0, - "block_time": 1729850567, + "block_time": 1729855452, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "bc2e4e1b8f015215c3052ae2a652b2aab2ea658a202e34c68ea207eaa4fda544", + "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", "block_index": 138, - "block_time": 1729850567 + "block_time": 1729855452 } ], "next_cursor": 213, @@ -10805,12 +10805,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "start_block": 0, "status": "open", - "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "tx_index": 42, - "block_time": 1729850651, + "block_time": 1729855547, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10818,9 +10818,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "f11eac2e53ccdcdeff0707c98992d622af4bc25799f78fbd73749b85cdb18261", + "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", "block_index": 155, - "block_time": 1729850651 + "block_time": 1729855547 } ], "next_cursor": 196, @@ -10833,11 +10833,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "cb1aef89d97598af1dbad3497687900929bd13983b9b42007252f2e03ad7c841" + "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6" }, "tx_hash": null, "block_index": 130, - "block_time": 1729850538 + "block_time": 1729855421 } ], "next_cursor": 110, @@ -10853,17 +10853,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "5277f2a21f92d1c0076971aaa215d0f5a68a5290d3da0a8a97b4712fae1bd7ef", + "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", "paid_quantity": 34, - "source": "bcrt1q9yw6n3890fl2fyvuyz9r4y4u6ktjxrdtacntfl", + "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", "status": "valid", - "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "tx_index": 23, - "block_time": 1729850561, + "block_time": 1729855445, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, @@ -10871,9 +10871,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "6aa80d2a746daf70141148553af003ac1c99a4c951397b48384ec3ee2f24f813", + "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", "block_index": 136, - "block_time": 1729850561 + "block_time": 1729855445 } ], "next_cursor": 190, @@ -10887,28 +10887,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a:1", + "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "status": "valid", - "tx_hash": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a", + "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", "tx_index": 65, - "block_time": 1729850823, + "block_time": 1729855711, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmukpkk7tdp5z383gcq7u5kena50cmpjtvjwrpl", + "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "97e94cb29fcbc380d1bef5bda67e7c751c74856b561fee8d6aa692bd66e58a5a", + "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", "block_index": 199, - "block_time": 1729850823 + "block_time": 1729855711 } ], "next_cursor": 319, @@ -10922,28 +10922,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qh6l39majs3flm0nejkcf44gkrn2hmx52v2qs45", + "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "af0d64892e003bc6d25c2a02b48c01a8259de5feae46a015075922ac25b877a9:0", + "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", "status": "valid", - "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "tx_index": 38, - "block_time": 1729850626, + "block_time": 1729855532, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5vt0ejsfkneue6y2xw5adhdv4s0h8mykxu6snt", + "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f6c0b723e854666ce67051a8a35f2f4dc585e9311f938b42bd1f963d00ff5137", + "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", "block_index": 151, - "block_time": 1729850626 + "block_time": 1729855532 } ], "next_cursor": null, @@ -10957,14 +10957,14 @@ "params": { "asset": "XCP", "block_index": 201, - "destination": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d:0", + "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", "msg_index": 1, "quantity": 1500000000, - "source": "cb2980dc10ca34489c94df9f4f498c29ae99e048ac206d850cf672bd58dc6489:1", + "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", "status": "valid", - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "tx_index": 68, - "block_time": 1729850846, + "block_time": 1729855734, "asset_info": { "divisible": true, "asset_longname": null, @@ -10974,9 +10974,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "792a96a5a67e61bea2d73084578e1eea33f9c7c7ef126da52bf322cfd600ce6d", + "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", "block_index": 201, - "block_time": 1729850846 + "block_time": 1729855734 } ], "next_cursor": 595, @@ -10991,17 +10991,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qyy00zkcnzhrwx3vkjasfktxa6954zr7aw8na5g", + "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", "status": "valid", - "tx_hash": "19ac57f341a56378548a660b5982a7937163b3ba0509160d379c719ef5778b72", + "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", "tx_index": 9, - "block_time": 1729850504, + "block_time": 1729855388, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "19ac57f341a56378548a660b5982a7937163b3ba0509160d379c719ef5778b72", + "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", "block_index": 121, - "block_time": 1729850504 + "block_time": 1729855388 } ], "next_cursor": 65, diff --git a/release-notes/release-notes-v10.6.0.md b/release-notes/release-notes-v10.6.0.md index 22470de71f..f4086bc44d 100644 --- a/release-notes/release-notes-v10.6.0.md +++ b/release-notes/release-notes-v10.6.0.md @@ -9,6 +9,8 @@ This release is a protocol change from mainnet block 868,200 (in about one week) - `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
`. +This release also includes a bugfix for chained UTXO movements within the same block. This bugfix requires an automatic reparse starting from block 867000. Given the current slowdowns in catching up with the API database, we recommend using `counterparty-server bootstrap` before restarting your server. + *IMPORTANT* All wallets should use the `compose_dispense()` call to trigger dispenses rather than the legacy `create_send()`. Due to the above bug, using `create_send()` can make it possible for users to send BTC to an address where the dispenser will fail. All node hosts should migrate to `compose_dispense()` ASAP. @@ -24,6 +26,8 @@ This release is a protocol change from mainnet block 868,200 (in about one week) - Run reparse only if necessary - Fix `message_data` when retrieving information about fairminter or fairmint transactions - Use `threading.Event()` to cleanly stop threads and subprocesses started by `counterparty-server` +- Don't update UTXOs balances cache on mempool transaction +- Update UTXOs balances cache before transacation parsing to catch chained UTXO moves in the same block ## Codebase From 79dee84c6a1b60dea0a6e2fcdd28c38d7e406325 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 12:18:23 +0000 Subject: [PATCH 67/71] Bump Version; Add checkpoint --- apiary.apib | 2 +- counterparty-core/counterpartycore/lib/check.py | 4 ++++ counterparty-core/counterpartycore/lib/config.py | 6 +++--- .../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 +- release-notes/release-notes-v10.6.0.md | 1 + 10 files changed, 15 insertions(+), 10 deletions(-) diff --git a/apiary.apib b/apiary.apib index 8bac5984a1..e622713c14 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1447,7 +1447,7 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.5.0", + "version": "10.6.0", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/counterpartycore/lib/check.py b/counterparty-core/counterpartycore/lib/check.py index 6e046873b3..436ff543b9 100644 --- a/counterparty-core/counterpartycore/lib/check.py +++ b/counterparty-core/counterpartycore/lib/check.py @@ -663,6 +663,10 @@ "ledger_hash": "1c5164faca831bb726666eb6c63e5d8fd4070b382706c30f839ed407526c7de4", "txlist_hash": "a536d8a1b2b3cf6164b9a2cd70edd2efaea615340e11291eebb6201c762aaaf5", }, + 867290: { + "ledger_hash": "4b5c0ab384408c9e7268c24887f3d2265a0b045f5a161e3343d15cf861b7d07c", + "txlist_hash": "b32df1c46cde54f9eb1075652634276d5fb997a85ca7394c6566810475b30c00", + }, } CONSENSUS_HASH_VERSION_TESTNET = 7 diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index ea39461cc5..b06f51defa 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" # for hatch +__version__ = "10.6.0" # for hatch VERSION_STRING = __version__ version = VERSION_STRING.split("-")[0].split(".") VERSION_MAJOR = int(version[0]) @@ -20,8 +20,8 @@ # Fo example: # NEED_REPARSE_IF_MINOR_IS_LESS_THAN = (1, 800000) # means that we need to reparse from block 800000 if database minor version is less than 1 -NEED_REPARSE_IF_MINOR_IS_LESS_THAN = [(3, 0), (9, 865999)] -NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET = [(3, 0), (9, 2925799)] +NEED_REPARSE_IF_MINOR_IS_LESS_THAN = [(3, 0), (5, 865999), (6, 867000)] +NEED_REPARSE_IF_MINOR_IS_LESS_THAN_TESTNET = [(3, 0), (5, 2925799), (6, 2925799)] # Counterparty protocol TXTYPE_FORMAT = ">I" SHORT_TXTYPE_FORMAT = "B" diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md b/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md index 82086e64a5..78cbb22bf6 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", + "version": "10.6.0", "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 ecc8c1f84d..4d77bb57fd 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 \ No newline at end of file +counterparty-rs==10.6.0 \ No newline at end of file diff --git a/counterparty-rs/Cargo.lock b/counterparty-rs/Cargo.lock index d4e65ec25f..d9a1b149c8 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" +version = "10.6.0" dependencies = [ "bip32", "bitcoin 0.29.2", diff --git a/counterparty-rs/Cargo.toml b/counterparty-rs/Cargo.toml index 30e3d5b968..161e0a4536 100644 --- a/counterparty-rs/Cargo.toml +++ b/counterparty-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "counterparty-rs" -version = "10.5.0" +version = "10.6.0" 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 50abaa2411..7421a94899 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 +counterparty-core==10.6.0 diff --git a/docker-compose.yml b/docker-compose.yml index a2371c62bf..dabad76ae2 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 + image: counterparty/counterparty:v10.6.0 stop_grace_period: 1m volumes: - data:/root/.bitcoin diff --git a/release-notes/release-notes-v10.6.0.md b/release-notes/release-notes-v10.6.0.md index 22470de71f..4a766fb52d 100644 --- a/release-notes/release-notes-v10.6.0.md +++ b/release-notes/release-notes-v10.6.0.md @@ -28,6 +28,7 @@ This release is a protocol change from mainnet block 868,200 (in about one week) ## Codebase - Use a lock file for RS Fetcher thread +- Add checkpoint for block 867290 ## API From ef7df53d0a23f91dbc946b28faff807949b47866 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 17:11:11 +0000 Subject: [PATCH 68/71] Add get_asset and give_asset arguments for Get Orders endpoint --- apiary.apib | 3706 +++++++++-------- .../counterpartycore/lib/api/queries.py | 11 +- .../test/fixtures/api_v2_fixtures.json | 14 + .../test/regtest/apidoc/apicache.json | 3364 +++++++-------- release-notes/release-notes-v10.6.0.md | 1 + 5 files changed, 3562 insertions(+), 3534 deletions(-) diff --git a/apiary.apib b/apiary.apib index 1cf555d294..f47003f0a9 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-25 11:29:11.751223. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-25 17:08:10.463286. 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": 590, "event": "NEW_BLOCK", "params": { - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", "block_index": 201, - "block_time": 1729855734, + "block_time": 1729876074, "difficulty": 545259519, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4" + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280" }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 580, @@ -205,17 +205,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 591, "event": "NEW_TRANSACTION", "params": { - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", "block_index": 201, - "block_time": 1729855734, + "block_time": 1729876074, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "fee": 0, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980: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": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 582, @@ -246,16 +246,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "out_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 558, @@ -273,15 +273,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 589, @@ -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": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 578, @@ -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": 201, - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "block_time": 1729855734, + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "block_time": 1729876074, "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": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 593, @@ -361,16 +361,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "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": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 597, @@ -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": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "memo": null, "quantity": 10000, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "status": "valid", - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", "tx_index": 55, - "block_time": 1729855675, + "block_time": 1729876016, "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": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", "block_index": 189, - "block_time": 1729855675 + "block_time": 1729876016 } ], "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": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "valid", - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "tx_index": 56, - "block_time": 1729855679, + "block_time": 1729876020, "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": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "block_time": 1729855679 + "block_time": 1729876020 } ], "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": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "status": "valid", - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "block_time": 1729855694 + "block_time": 1729876037 } ], "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": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "valid", - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "tx_index": 41, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "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": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "block_time": 1729855544 + "block_time": 1729875884 } ], "next_cursor": null, @@ -589,11 +589,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "UTXOASSET", "block_index": 198, - "block_time": 1729855708 + "block_time": 1729876053 }, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "block_index": 198, - "block_time": 1729855708 + "block_time": 1729876053 } ], "next_cursor": 394, @@ -621,22 +621,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "status": "valid", "transfer": false, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "tx_index": 64, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "block_index": 198, - "block_time": 1729855708 + "block_time": 1729876053 } ], "next_cursor": 395, @@ -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": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "tx_index": 61, - "block_time": 1729855698, + "block_time": 1729876041, "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": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "block_index": 195, - "block_time": 1729855698 + "block_time": 1729876041 } ], "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": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "open", - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "tx_index": 59, - "block_time": 1729855691, + "block_time": 1729876032, "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": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "block_time": 1729855691 + "block_time": 1729876032 } ], "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": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "tx0_index": 51, - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx1_index": 54, - "block_time": 1729855661, + "block_time": 1729876012, "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": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "block_index": 188, - "block_time": 1729855661 + "block_time": 1729876012 } ], "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": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b" + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703" }, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_time": 1729855686 + "block_time": 1729876028 } ], "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": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92" + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21" }, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "block_time": 1729855657 + "block_time": 1729876008 } ], "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": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "status": "completed" }, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "block_time": 1729855657 + "block_time": 1729876008 } ], "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": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "status": "valid", - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "tx_index": 53, - "block_time": 1729855657, + "block_time": 1729876008, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "block_time": 1729855657 + "block_time": 1729876008 } ], "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": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "valid", - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "tx_index": 58, - "block_time": 1729855686 + "block_time": 1729876028 }, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_time": 1729855686 + "block_time": 1729876028 } ], "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": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "block_time": 1729855589 + "order_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "block_time": 1729875934 }, "tx_hash": null, "block_index": 184, - "block_time": 1729855589 + "block_time": 1729875934 } ], "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": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "block_time": 1729855589 + "order_match_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "block_time": 1729875934 }, "tx_hash": null, "block_index": 184, - "block_time": 1729855589 + "block_time": 1729875934 } ], "next_cursor": null, @@ -991,17 +991,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "satoshirate": 1, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": 0, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "tx_index": 62, - "block_time": 1729855702, + "block_time": 1729876044, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1010,9 +1010,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 196, - "block_time": 1729855702 + "block_time": 1729876044 } ], "next_cursor": 272, @@ -1032,9 +1032,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "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": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 560, @@ -1065,13 +1065,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", + "destination": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", "dispense_quantity": 10, - "dispenser_tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "tx_hash": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", + "dispenser_tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", "tx_index": 31, - "block_time": 1729855485, + "block_time": 1729875848, "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": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", + "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", "block_index": 144, - "block_time": 1729855485 + "block_time": 1729875848 } ], "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": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "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": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 561, @@ -1145,19 +1145,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "tx_index": 25, "value": 66600.0, - "block_time": 1729855452, + "block_time": 1729875826, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "block_index": 138, - "block_time": 1729855452 + "block_time": 1729875826 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "start_block": 0, "status": "open", - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "block_index": 155, - "block_time": 1729855547 + "block_time": 1729875887 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6" + "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe" }, "tx_hash": null, "block_index": 130, - "block_time": 1729855421 + "block_time": 1729875786 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "paid_quantity": 34, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "status": "valid", - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "block_index": 136, - "block_time": 1729855445 + "block_time": 1729875818 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", + "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "status": "valid", - "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", "tx_index": 65, - "block_time": 1729855711, + "block_time": 1729876056, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", "block_index": 199, - "block_time": 1729855711 + "block_time": 1729876056 } ], "next_cursor": 319, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", + "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", "status": "valid", - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "tx_index": 38, - "block_time": 1729855532, + "block_time": 1729875873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "block_index": 151, - "block_time": 1729855532 + "block_time": 1729875873 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 201, - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "msg_index": 1, "quantity": 1500000000, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "status": "valid", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 595, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", + "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", "status": "valid", - "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", + "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", "tx_index": 9, - "block_time": 1729855388, + "block_time": 1729875752, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", + "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", "block_index": 121, - "block_time": 1729855388 + "block_time": 1729875752 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", "difficulty": 545259519, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, "confirmed": true }, { "block_index": 200, - "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", - "block_time": 1729855721, - "previous_block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", + "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", + "block_time": 1729876064, + "previous_block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", "difficulty": 545259519, - "ledger_hash": "2af8619b803c6b29b1f2a055316de2c9a9d803e259a14a16463761b47e9cf3e6", - "txlist_hash": "31846f1896caccd2aca7812d9e520696d531a9983e2bb001f2123a3a89a3aec7", - "messages_hash": "9690ded4173551a008579d5c17dedd4b0bc4c8092a5f4714232a8c4a99c6f2a8", + "ledger_hash": "336efe812ffe5396c704c2595aa7eb267beae7a33cf999c18be19a41f374087c", + "txlist_hash": "59daaee3faf1931a718b4990167f6fe8e3f24e16aa871ef809babcace67b6305", + "messages_hash": "cf00d968ac2ce169aa1a4be3eac4353ba1db59fd17e66566b9867accea98b2f2", "transaction_count": 2, "confirmed": true }, { "block_index": 199, - "block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", - "block_time": 1729855711, - "previous_block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", + "block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", + "block_time": 1729876056, + "previous_block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", "difficulty": 545259519, - "ledger_hash": "695862b698c288f3575ab76526d762fbb8cadd2840770cd3a6e25392bfcc8ef7", - "txlist_hash": "f402f7327c28f3f618fdc4c02ee814dd38ebf36b527be4d3d45a6c88fed7a0ea", - "messages_hash": "7ae4443aa7388cb1b7871359fd4f53c81032ccef4306818777d8af425c8e72cf", + "ledger_hash": "5d19fa3c92a777c22206d0b7912c5aec9861e57fa9e23968b5b26da8d262d95e", + "txlist_hash": "1f07bdd8d6cfeaa370f401f09c76dd727c7d508ac615dbceaaf76fccee496ec5", + "messages_hash": "9cb0d96db0a3b2d578629764d069eaad58dc349b8fcee18491892b30f85e4d38", "transaction_count": 1, "confirmed": true }, { "block_index": 198, - "block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", - "block_time": 1729855708, - "previous_block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", + "block_time": 1729876053, + "previous_block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", "difficulty": 545259519, - "ledger_hash": "e1f38930925bd16d72e4063e03bfe1be141a684cdb720f46afeff674d11cc8f7", - "txlist_hash": "edb105e264828d7213766b56c453579079b093d839a4ededa6aa20aa18ad5c0c", - "messages_hash": "d2b8819a871fce75c132452e7bfc05033665284f65c32e5772e45cd234ba6a41", + "ledger_hash": "2a8b021bc5ac61c2570e26def8375d076c33c15f90711aa5fd7de2a26f98ec58", + "txlist_hash": "5d3ed76ad91068aea0d582fa2971a5e1b3a7f894a797780e186c8d7ab3ce4e6f", + "messages_hash": "7d651b3b7f2137114d4a7e66c602b3b8f99bfdef221e7b850f353d87c91d5607", "transaction_count": 1, "confirmed": true }, { "block_index": 197, - "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", - "block_time": 1729855705, - "previous_block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", + "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", + "block_time": 1729876048, + "previous_block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", "difficulty": 545259519, - "ledger_hash": "6d667e5a72d2d202f9a8e7a8e17c905c5c2a5f465961617c81e45892642ac1cb", - "txlist_hash": "a1c33347d3a88485e486bb04b0cbbe78b67a010ba4e3b29afb0a9302b0038835", - "messages_hash": "7e2630bc7f158c56282287639aab6e840784c4b5368007ddda5030db90ce009f", + "ledger_hash": "e03d381575e6fd123f8502086c5c4f4031998824840366947b1a1e82200076f2", + "txlist_hash": "4d905525c1e83f6f3b10de1a15f0e0c638f7e5420e4c7bfa902464194cb56ea4", + "messages_hash": "8f2707e5da86d6c8228ec3dca70cdfc49851e139797c1f8f8f4288647984f1e4", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", "difficulty": 545259519, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316` (str, required) - The index of the block to return + + block_hash: `1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", "difficulty": 545259519, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 601, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 600, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" } ], "next_cursor": 598, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 597, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 594, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 201, - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2181,24 +2181,24 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "object_id": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "block_index": 184, "confirmed": true, - "block_time": 1729855589 + "block_time": 1729875934 }, { "type": "order", - "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, "confirmed": true, - "block_time": 1729855589 + "block_time": 1729875934 }, { "type": "order_match", - "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "block_index": 184, "confirmed": true, - "block_time": 1729855589 + "block_time": 1729875934 } ], "next_cursor": null, @@ -2230,13 +2230,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "status": "valid", "confirmed": true, - "block_time": 1729855686 + "block_time": 1729876028 } ], "next_cursor": null, @@ -2268,15 +2268,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "block_index": 195, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729855698, + "block_time": 1729876041, "asset_info": { "divisible": true, "asset_longname": null, @@ -2329,14 +2329,14 @@ Returns the issuances of a block "result": [ { "tx_index": 64, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "transfer": false, "callable": false, "call_date": 0, @@ -2351,7 +2351,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2385,10 +2385,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2396,7 +2396,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -2409,10 +2409,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2420,11 +2420,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2462,27 +2462,27 @@ Returns the dispenses of a block { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2497,7 +2497,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -2538,16 +2538,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -2586,10 +2586,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, "block_index": 155, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2614,7 +2614,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2651,22 +2651,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2705,17 +2705,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "block_index": 138, - "block_hash": "3d837020cd5862c91a6829d9d01db5b1f10ce3cbc1a2e07984a33b20a07c27c5", - "block_time": 1729855452, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "3083921a78e7ee083fedf47e7f62eb1277862a866255eff5c0bb140bc42551c0", + "block_time": 1729875826, + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076:1", + "utxos_info": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2740,25 +2740,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "block_hash": "719f932fad8ae84f86690a3e04621c623123a540c0792674e1ac224cbe376832", - "block_time": 1729855657, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "565497e933d18065920c7991438a01968c62c1bb8bed233a7b58a2b11b615589", + "block_time": 1729876008, + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "btc_amount": 2000, "fee": 10000, - "data": "0bbeb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "data": "0bd520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c12d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "supported": true, - "utxos_info": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4:0", + "utxos_info": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "status": "valid" } }, @@ -2773,23 +2773,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", - "block_time": 1729855686, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", + "block_time": 1729876028, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "supported": true, - "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", + "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "status": "valid" } }, @@ -2804,17 +2804,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "block_index": 195, - "block_hash": "18d6543027004fa20eefa1a2859bb34b52f61c9d47606a76167b9698a36e96c9", - "block_time": 1729855698, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "block_hash": "36a4db927a1097c8fae6e5b7defeffb6d4a5a8c21b2fbf7caab713bc9e4caef2", + "block_time": 1729876041, + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6:1", + "utxos_info": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2844,17 +2844,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 196, - "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", - "block_time": 1729855702, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", + "block_time": 1729876044, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", + "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2871,7 +2871,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2890,17 +2890,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2920,17 +2920,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "block_hash": "1c8ee877704870a5c60bb53d1c2f0b163a7acc79620f1ab68b1b4ae24a2c85cf", - "block_time": 1729855544, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "2cf4d7d1187638ff4ed85d26bcde0cf0056b88791dd56365fe15f8c6e70f4dfd", + "block_time": 1729875884, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca:1", + "utxos_info": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2943,7 +2943,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2968,17 +2968,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 64, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "block_index": 198, - "block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", - "block_time": 1729855708, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", + "block_time": 1729876053, + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000003f1a69ea1d3000000174876e8000100004d79207375706572206173736574", "supported": true, - "utxos_info": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa:1", + "utxos_info": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -3010,17 +3010,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", - "block_time": 1729855691, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", + "block_time": 1729876032, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", + "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3063,17 +3063,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 55, - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", "block_index": 189, - "block_hash": "427ae65934dcd0dbd23b7e51bb35379652d9a193d2fbd5adaa2c92bfe516f1d2", - "block_time": 1729855675, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "block_hash": "7f8dd9644d785ad09a65590da5ffb834ea647d348690d66d8cf0a5c7fa3c4011", + "block_time": 1729876016, + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710801fe70fcf646daca82d24519e04b3c290bc4ee845", + "data": "020000000000000001000000000000271080ff7bfd93f2bf72a1088e1cdf07174f46f787c026", "supported": true, - "utxos_info": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6:1", + "utxos_info": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3081,7 +3081,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "memo": null, "asset_info": { "divisible": true, @@ -3104,17 +3104,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "block_hash": "4daf5bebb83a500be3f9cad61932a0a5ff5ec8564481d1d9c4c32632cc54d01f", - "block_time": 1729855679, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "0c22d5f5069d1e48684934297db7b24cd14f263b972adee4e059a1b97f242b5a", + "block_time": 1729876020, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038090f15ced94700f317670d7d923e986e2a6e5808a80d983ee3c4c35979315d10bc2fb19b3de2121cbe1801fe70fcf646daca82d24519e04b3c290bc4ee845400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8041bc73770b22d4ed185c6ac763c7d17e3a3272ce80ff7bfd93f2bf72a1088e1cdf07174f46f787c026400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36:0", + "utxos_info": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3122,14 +3122,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -3137,7 +3137,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3163,23 +3163,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "block_hash": "13f4367cb5bd0d5c31f4826a35d709738b525b49fcf3b1e6787151dee274fce9", - "block_time": 1729855694, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "block_hash": "1b34943023cd7688d3cd4fa56d187dbfb87e0fa3bfba57dc07c9dade989aab67", + "block_time": 1729876037, + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04801fe70fcf646daca82d24519e04b3c290bc4ee845017377656570206d7920617373657473", + "data": "0480ff7bfd93f2bf72a1088e1cdf07174f46f787c026017377656570206d7920617373657473", "supported": true, - "utxos_info": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038:1", + "utxos_info": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "memo": "sweep my assets" } @@ -3212,17 +3212,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3235,17 +3235,17 @@ Returns the list of the last ten transactions }, { "tx_index": 67, - "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "block_index": 200, - "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", - "block_time": 1729855721, + "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", + "block_time": 1729876064, "source": "", "destination": null, "btc_amount": null, "fee": null, "data": null, "supported": true, - "utxos_info": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0 f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "utxos_info": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0 69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", "confirmed": true } ], @@ -3259,7 +3259,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001019ba23798dfa802c63ae9b2ebb354cf992067058a3ffef540d8cb0cbbe1cd82920000000000ffffffff0200000000000000002c6a2a77f7c8fd32f3c067edcc9802c3f89e91a15ba3b3954dd99ca872b88d3e5e60ba596d8a555b28c1648729f0ca052a01000000160014686905953261342337f07034895a218e560b28aa0247304402206b4b2301efc059ef9e667e139f19c917a399a9e5d132f559362105df595394a10220093c25f79c9f75a2af112766ff4301af64e980e32d36643d509eb28a9ecb8bb1012103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f100000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001014f8571a488ab04a918215d4a1f93ee57bdee8f748751083d045a02d7c5d0ec200000000000ffffffff0200000000000000002c6a2a53d62d377950872e33ce781c58a42345cae314bd15ad5cbb2bf248066d88550d0a7fbbbc01cc7240fbcaf0ca052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff7480247304402200288c8930b6f242c23cd4b2c836cdd35a7f36120a57ad0a8a74a2a5634326ea402203c74a2e6277f1bb7e2d1c7162240daf44dbb75309807fe199a4dfe4f00e67bc001210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51500000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3272,7 +3272,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3283,7 +3283,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "9ba23798dfa802c63ae9b2ebb354cf992067058a3ffef540d8cb0cbbe1cd8292", + "hash": "4f8571a488ab04a918215d4a1f93ee57bdee8f748751083d045a02d7c5d0ec20", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3293,20 +3293,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a2a77f7c8fd32f3c067edcc9802c3f89e91a15ba3b3954dd99ca872b88d3e5e60ba596d8a555b28c1648729" + "script_pub_key": "6a2a53d62d377950872e33ce781c58a42345cae314bd15ad5cbb2bf248066d88550d0a7fbbbc01cc7240fbca" }, { "value": 4999990000, - "script_pub_key": "0014686905953261342337f07034895a218e560b28aa" + "script_pub_key": "0014aa5f1fcf04bccbd58dfaa75c74514113e56ff748" } ], "vtxinwit": [ - "304402206b4b2301efc059ef9e667e139f19c917a399a9e5d132f559362105df595394a10220093c25f79c9f75a2af112766ff4301af64e980e32d36643d509eb28a9ecb8bb101", - "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" + "304402200288c8930b6f242c23cd4b2c836cdd35a7f36120a57ad0a8a74a2a5634326ea402203c74a2e6277f1bb7e2d1c7162240daf44dbb75309807fe199a4dfe4f00e67bc001", + "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" ], "lock_time": 0, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", - "tx_id": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1" + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "tx_id": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f" }, "unpacked_data": { "message_type": "dispenser", @@ -3323,7 +3323,7 @@ Returns Counterparty information from a raw transaction in hex format. "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -3341,7 +3341,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de` (str, required) - Transaction hash + + tx_hash: `4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3352,18 +3352,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6c51b4747e343ff48ca5d364ad32c4a1dae3b4e27d2bfdca7df2c65321867dc2", + "hash": "1a4736dcb5b00f8859901726b6a731d7ddd53fde667085c039e038518019c026", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3373,20 +3373,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e8e584f24970cedd8197e136ca5d7eb68b26e5c59a720d1ab4b7a064005f7b4bfbdf1f532cae32c58b84b46576dc9" + "script_pub_key": "6a2e57e589f583ae5424e2cac4d48559fda7d7431a2a617073832f3eb2f7d5e48c232aa072921da9f0ca2cdbeb9f7cfd" }, { "value": 4999970000, - "script_pub_key": "00141fe70fcf646daca82d24519e04b3c290bc4ee845" + "script_pub_key": "0014ff7bfd93f2bf72a1088e1cdf07174f46f787c026" } ], "vtxinwit": [ - "304402202f41770c5d29a3b62b94a88f08de624cb08c7b0497062c9d4ca626c014856bf50220021f85fbff19e0de3b8f84f65cb033350387af21f40e9b9c7d5d2233bfc665e601", - "03ed0f47d2926fe2a31d01c87c5879c72d66524aa47e3f26c78259bfccc960c451" + "3044022010433c1e6d727485a461ff6e7bf52076e8005d7829c43cff5f2e0bae9ca8d36902205d3f93066744c90a7e5b9ffbfef092f666962e4f14679ecf69201db42447d5d101", + "0271e87f8220264edfff84c2d6d6e03361443ffa736d66fc4cc0ea261e2fa56d73" ], "lock_time": 0, - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", - "tx_id": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de" + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_id": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3394,7 +3394,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -3455,17 +3455,17 @@ Returns a transaction by its index. { "result": { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3484,7 +3484,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The hash of the transaction + + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (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. @@ -3496,17 +3496,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3549,12 +3549,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 601, @@ -3563,14 +3563,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3581,9 +3581,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 600, @@ -3592,9 +3592,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -3604,24 +3604,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3631,9 +3631,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 598, @@ -3641,14 +3641,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 201, - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "msg_index": 1, "quantity": 1500000000, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "status": "valid", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3658,9 +3658,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 597, @@ -3673,7 +3673,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The hash of the transaction to return + + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `603` (str, optional) - The last event index to return @@ -3697,12 +3697,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 601, @@ -3711,14 +3711,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3729,9 +3729,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 600, @@ -3740,9 +3740,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -3752,24 +3752,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3779,9 +3779,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 598, @@ -3789,14 +3789,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 201, - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "msg_index": 1, "quantity": 1500000000, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "status": "valid", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3806,9 +3806,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 597, @@ -3821,7 +3821,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The hash of the transaction to return + + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (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 @@ -3840,10 +3840,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3851,7 +3851,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3864,10 +3864,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3875,11 +3875,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -3897,7 +3897,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The hash of the transaction to return + + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (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 @@ -3917,27 +3917,27 @@ Returns the dispenses of a block { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3952,7 +3952,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -3996,16 +3996,16 @@ Returns the events of a transaction "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -4015,9 +4015,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 597, @@ -4027,12 +4027,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -4042,9 +4042,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 594, @@ -4054,24 +4054,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": null, @@ -4084,7 +4084,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The hash of the transaction to return + + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `603` (str, optional) - The last event index to return + Default: `None` @@ -4106,16 +4106,16 @@ Returns the events of a transaction "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -4125,9 +4125,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 597, @@ -4137,12 +4137,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -4152,9 +4152,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 594, @@ -4164,24 +4164,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": null, @@ -4196,7 +4196,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4220,7 +4220,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4230,7 +4230,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4241,7 +4241,7 @@ Returns the balances of several addresses "total": 97999999980, "addresses": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -4251,7 +4251,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4262,7 +4262,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4272,7 +4272,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4283,7 +4283,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4293,7 +4293,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4304,7 +4304,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4314,7 +4314,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4331,7 +4331,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - Comma separated list of addresses to return + cursor: `68` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4350,17 +4350,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 63, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", - "block_time": 1729855705, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", + "block_time": 1729876048, + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "btc_amount": 4000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", + "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -4373,17 +4373,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 196, - "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", - "block_time": 1729855702, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", + "block_time": 1729876044, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", + "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -4400,7 +4400,7 @@ Returns the transactions of a list of addresses "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4412,17 +4412,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", - "block_time": 1729855691, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", + "block_time": 1729876032, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", + "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4458,23 +4458,23 @@ Returns the transactions of a list of addresses }, { "tx_index": 58, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", - "block_time": 1729855686, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", + "block_time": 1729876028, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "supported": true, - "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", + "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "status": "valid" } }, @@ -4482,17 +4482,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 191, - "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", - "block_time": 1729855683, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", + "block_time": 1729876024, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", + "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4537,7 +4537,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `603` (str, optional) - The last event index to return @@ -4563,27 +4563,27 @@ Returns the events of a list of addresses "asset": "TESTLOCKDESC", "block_index": 197, "btc_amount": 4000, - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "dispense_index": 0, "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "tx_index": 63, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 }, { "event_index": 560, @@ -4592,64 +4592,64 @@ Returns the events of a list of addresses "asset": "TESTLOCKDESC", "dispense_count": 1, "give_remaining": 6000, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": 0, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "give_remaining_normalized": "0.00006000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "block_index": 197, "calling_function": "dispense", - "event": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "event": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "quantity": 4000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "0.00004000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 }, { "event_index": 557, "event": "NEW_TRANSACTION", "params": { - "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", "block_index": 197, - "block_time": 1729855705, + "block_time": 1729876048, "btc_amount": 4000, "data": "0d00", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "fee": 0, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "tx_index": 63, - "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", + "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -4659,9 +4659,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00004000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 } ], "next_cursor": 557, @@ -4674,7 +4674,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt,bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l,bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -4690,17 +4690,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "quantity": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, "asset_info": { "divisible": true, @@ -4711,22 +4711,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -4736,22 +4736,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "block_index": 201, - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -4761,30 +4761,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729855738.770461, + "block_time": 1729876077.4463573, "btc_amount": 0, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "destination": "", "fee": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, - "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", + "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -4798,7 +4798,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, @@ -4811,7 +4811,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4831,7 +4831,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4839,14 +4839,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4854,14 +4854,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4876,7 +4876,7 @@ Returns the balances of an address "quantity_normalized": "826.99937000" }, { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -4884,7 +4884,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4901,7 +4901,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4914,7 +4914,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -4939,7 +4939,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4989,16 +4989,16 @@ Returns the credits of an address "result": [ { "block_index": 192, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "asset_info": { "divisible": true, "asset_longname": null, @@ -5010,16 +5010,16 @@ Returns the credits of an address }, { "block_index": 184, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "event": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "asset_info": { "divisible": true, "asset_longname": null, @@ -5031,20 +5031,20 @@ Returns the credits of an address }, { "block_index": 161, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", + "event": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855573, + "block_time": 1729875920, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5052,20 +5052,20 @@ Returns the credits of an address }, { "block_index": 158, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", + "event": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855560, + "block_time": 1729875898, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5077,16 +5077,16 @@ Returns the credits of an address "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", + "event": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", "tx_index": 39, - "utxo": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", - "utxo_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "utxo": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", + "utxo_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "confirmed": true, - "block_time": 1729855536, + "block_time": 1729875878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5103,7 +5103,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5142,20 +5142,20 @@ Returns the debits of an address "result": [ { "block_index": 196, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "quantity": 10000, "action": "open dispenser", - "event": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "event": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855702, + "block_time": 1729876044, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5163,16 +5163,16 @@ Returns the debits of an address }, { "block_index": 193, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "event": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "asset_info": { "divisible": true, "asset_longname": null, @@ -5184,16 +5184,16 @@ Returns the debits of an address }, { "block_index": 191, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855683, + "block_time": 1729876024, "asset_info": { "divisible": true, "asset_longname": null, @@ -5205,16 +5205,16 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "divisible": true, "asset_longname": null, @@ -5226,20 +5226,20 @@ Returns the debits of an address }, { "block_index": 190, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5256,7 +5256,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address of the feed + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5291,7 +5291,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -5310,9 +5310,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", + "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", "block_index": 137, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5320,7 +5320,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855449, + "block_time": 1729875823, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5334,7 +5334,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -5353,14 +5353,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "37e8c0835b2a01a3842916b149cf508f1126b2ad03f8e4460aed0f734256c794", + "tx_hash": "03c6237993bf4e49be2d4706650f42c8f5e92d5801c440c704be95b788fa3a94", "block_index": 112, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729855359, + "block_time": 1729875719, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5375,7 +5375,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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 @@ -5394,10 +5394,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5405,7 +5405,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "divisible": true, "asset_longname": null, @@ -5418,10 +5418,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5429,11 +5429,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5442,10 +5442,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5453,11 +5453,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5466,10 +5466,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 39, - "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", + "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", "block_index": 152, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5477,11 +5477,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855536, + "block_time": 1729875878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5490,10 +5490,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 36, - "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", + "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", "block_index": 149, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5501,11 +5501,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855525, + "block_time": 1729875866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5523,7 +5523,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736` (str, required) - The address to return + + address: `bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5542,10 +5542,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "block_index": 151, - "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", - "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", + "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5553,11 +5553,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855532, + "block_time": 1729875873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5575,7 +5575,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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` @@ -5595,10 +5595,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5606,11 +5606,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5619,10 +5619,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -5630,11 +5630,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5643,10 +5643,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 39, - "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", + "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", "block_index": 152, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5654,11 +5654,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855536, + "block_time": 1729875878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5667,10 +5667,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 36, - "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", + "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", "block_index": 149, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -5678,11 +5678,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855525, + "block_time": 1729875866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5700,7 +5700,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736` (str, required) - The address to return + + address: `bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq` (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` @@ -5720,10 +5720,10 @@ Returns the receives of an address and asset "result": [ { "tx_index": 38, - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "block_index": 151, - "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", - "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", + "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5731,11 +5731,11 @@ Returns the receives of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855532, + "block_time": 1729875873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5753,7 +5753,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5782,9 +5782,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5793,7 +5793,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5803,7 +5803,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -5819,9 +5819,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5830,7 +5830,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5840,11 +5840,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5865,7 +5865,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5878,9 +5878,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5889,7 +5889,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5899,7 +5899,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -5921,7 +5921,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -5941,19 +5941,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5961,7 +5961,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5976,11 +5976,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5990,19 +5990,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6010,7 +6010,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6025,7 +6025,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6039,19 +6039,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6059,7 +6059,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6074,7 +6074,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6096,7 +6096,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address to return + + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6116,19 +6116,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6136,7 +6136,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6151,11 +6151,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6165,19 +6165,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6185,7 +6185,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6200,7 +6200,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6214,19 +6214,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6234,7 +6234,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6249,7 +6249,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6271,7 +6271,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6292,19 +6292,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6312,7 +6312,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6327,7 +6327,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6341,19 +6341,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6361,7 +6361,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6376,7 +6376,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6398,7 +6398,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address to return + + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6419,19 +6419,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6439,7 +6439,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6454,7 +6454,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6468,19 +6468,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6488,7 +6488,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6503,7 +6503,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6525,7 +6525,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt` (str, required) - The address to return + + address: `bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -6544,16 +6544,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -6567,7 +6567,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6599,14 +6599,14 @@ Returns the issuances of an address "result": [ { "tx_index": 48, - "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", + "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -6621,20 +6621,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855573, + "block_time": 1729875920, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", + "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -6649,20 +6649,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729855569, + "block_time": 1729875905, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", + "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -6677,20 +6677,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855564, + "block_time": 1729875901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", + "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -6705,20 +6705,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855560, + "block_time": 1729875898, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -6733,7 +6733,7 @@ Returns the issuances of an address "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -6748,7 +6748,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The issuer or owner to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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 @@ -6771,8 +6771,8 @@ Returns the valid assets issued or owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -6780,16 +6780,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": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -6797,16 +6797,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": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -6814,16 +6814,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": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 19, @@ -6831,16 +6831,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": 1729855425, - "last_issuance_block_time": 1729855437, + "first_issuance_block_time": 1729875789, + "last_issuance_block_time": 1729875810, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -6848,8 +6848,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": 1729855406, - "last_issuance_block_time": 1729855421, + "first_issuance_block_time": 1729875771, + "last_issuance_block_time": 1729875786, "supply_normalized": "0.00000000" } ], @@ -6863,7 +6863,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The issuer to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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 @@ -6886,8 +6886,8 @@ Returns the valid assets issued by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -6895,16 +6895,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": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -6912,16 +6912,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": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -6929,16 +6929,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": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 19, @@ -6946,16 +6946,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": 1729855425, - "last_issuance_block_time": 1729855437, + "first_issuance_block_time": 1729875789, + "last_issuance_block_time": 1729875810, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -6963,8 +6963,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": 1729855406, - "last_issuance_block_time": 1729855421, + "first_issuance_block_time": 1729875771, + "last_issuance_block_time": 1729875786, "supply_normalized": "0.00000000" } ], @@ -6978,7 +6978,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The owner to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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 @@ -7001,8 +7001,8 @@ Returns the valid assets owned by an address "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -7010,16 +7010,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": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -7027,16 +7027,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": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -7044,16 +7044,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": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 19, @@ -7061,16 +7061,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": 1729855425, - "last_issuance_block_time": 1729855437, + "first_issuance_block_time": 1729875789, + "last_issuance_block_time": 1729875810, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -7078,8 +7078,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": 1729855406, - "last_issuance_block_time": 1729855421, + "first_issuance_block_time": 1729875771, + "last_issuance_block_time": 1729875786, "supply_normalized": "0.00000000" } ], @@ -7093,7 +7093,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + cursor: `68` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7112,17 +7112,17 @@ Returns the transactions of an address "result": [ { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 196, - "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", - "block_time": 1729855702, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", + "block_time": 1729876044, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", + "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -7139,7 +7139,7 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7151,17 +7151,17 @@ Returns the transactions of an address }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", - "block_time": 1729855691, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", + "block_time": 1729876032, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", + "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7197,23 +7197,23 @@ Returns the transactions of an address }, { "tx_index": 58, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", - "block_time": 1729855686, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", + "block_time": 1729876028, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "supported": true, - "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", + "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "status": "valid" } }, @@ -7221,17 +7221,17 @@ Returns the transactions of an address }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 191, - "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", - "block_time": 1729855683, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", + "block_time": 1729876024, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", + "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7267,17 +7267,17 @@ Returns the transactions of an address }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "block_hash": "4daf5bebb83a500be3f9cad61932a0a5ff5ec8564481d1d9c4c32632cc54d01f", - "block_time": 1729855679, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "0c22d5f5069d1e48684934297db7b24cd14f263b972adee4e059a1b97f242b5a", + "block_time": 1729876020, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038090f15ced94700f317670d7d923e986e2a6e5808a80d983ee3c4c35979315d10bc2fb19b3de2121cbe1801fe70fcf646daca82d24519e04b3c290bc4ee845400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8041bc73770b22d4ed185c6ac763c7d17e3a3272ce80ff7bfd93f2bf72a1088e1cdf07174f46f787c026400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36:0", + "utxos_info": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7285,14 +7285,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7300,7 +7300,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -7328,7 +7328,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -7347,20 +7347,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7385,7 +7385,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7414,9 +7414,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7431,7 +7431,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7457,9 +7457,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7474,7 +7474,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7500,9 +7500,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7517,7 +7517,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7543,9 +7543,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7560,7 +7560,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7595,7 +7595,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The source of the fairminter to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7620,10 +7620,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, "block_index": 155, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7648,7 +7648,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7657,10 +7657,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "tx_index": 22, "block_index": 135, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7685,7 +7685,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729855441, + "block_time": 1729875814, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7697,10 +7697,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "tx_index": 18, "block_index": 131, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7725,7 +7725,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729855425, + "block_time": 1729875789, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7737,10 +7737,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "tx_index": 14, "block_index": 130, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7765,7 +7765,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729855421, + "block_time": 1729875786, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7777,10 +7777,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "tx_index": 10, "block_index": 125, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7805,7 +7805,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7827,7 +7827,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address of the mints to return + + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7845,22 +7845,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7869,22 +7869,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", + "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", "tx_index": 21, "block_index": 134, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855437, + "block_time": 1729875810, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7893,22 +7893,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", + "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", "tx_index": 20, "block_index": 133, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855433, + "block_time": 1729875796, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7917,22 +7917,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", + "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", "tx_index": 19, "block_index": 132, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855430, + "block_time": 1729875793, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7941,22 +7941,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "12a62f789339c67d628a9c12915903aab410aab0ef479b338d82f8e3091e9e11", + "tx_hash": "35e610d6b6a17ffa96a45a34067de3837f4816e5de97bbaa1a4ba6c0e62aabd1", "tx_index": 15, "block_index": 127, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855411, + "block_time": 1729875776, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7965,22 +7965,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7999,7 +7999,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address of the mints to return + + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8018,22 +8018,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -8075,8 +8075,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will make the bet - + feed_address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will make the bet + + feed_address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address that hosts the feed to be bet on + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch) + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer) @@ -8144,7 +8144,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -8200,7 +8200,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8212,7 +8212,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985110, "btc_fee": 14890, - "rawtransaction": "0200000000010116f1a232770af6d5f5505439dcb9d2cf3791929b28c1db61d4a6d457afa250d600000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29c96fd5991b61c73d3d690af4e6852608339044ad2ab65f62787cad4cf1eee04ad9d6a83c7c482a29fbd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101ba9f4524168be2765a45cc71adb2b22281788fd6a477ebf760ed1f395345bbcb00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a2924f04cf861aaab433b87d991283f4abe647b7b8e6bdddce649bd29af4473b032afe6299df3411027f4d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8234,8 +8234,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending the payment - + order_match_id: `beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3` (str, required) - The ID of the order match to pay for + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending the payment + + order_match_id: `d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8287,23 +8287,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" }, "name": "btcpay", - "data": "434e5452505254590bbeb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0cd5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "data": "434e5452505254590bd520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c19ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978049, "btc_fee": 18951, - "rawtransaction": "02000000000101801556913b0d5ae24e208195d99fc10eb45d911dc3d749c946004a33e54234a400000000160014686905953261342337f07034895a218e560b28aaffffffff03b80b000000000000160014686905953261342337f07034895a218e560b28aa00000000000000004b6a491ec27218713d127a70b550b5374ebd2311688f7896b9d896e3884b79376a11180b49a7e96c34397e4da2455a515790d2eda23e0c6c5a4b19068c5cda295709de7064fa8711dcf5dc0b419c052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101be150b833f3b3d41e45aa03d1956746c24462d6ee5fa356310ae29f0fac3fdab00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03b80b000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74800000000000000004b6a49c822823fcbefad04994d17ebc7cd5ac8aecd0288a5df471749e7634949cae075fc3c11394264e28ade6e0acb72a1cd42aa03094bf3bb3a54bdafd74d88414cb76cc29609c85e65b0ef419c052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "status": "valid" } } @@ -8316,7 +8316,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address with the BTC to burn + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -8371,7 +8371,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "quantity": 1000, "overburn": false }, @@ -8381,7 +8381,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985156, "btc_fee": 13844, - "rawtransaction": "02000000000101204c7cf46cffafc2754dfe0a8cc18692abceb9af4538df434291c6cc40c25c4b00000000160014686905953261342337f07034895a218e560b28aaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000" + "rawtransaction": "0200000000010137ec33628fcdb1a9c50007c3a89a0e6bae5706b02951f6125718f6b4529e541600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000" } } ``` @@ -8391,8 +8391,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8444,21 +8444,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade" + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff" }, "name": "cancel", - "data": "434e5452505254594616a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "data": "434e5452505254594665c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985110, "btc_fee": 14890, - "rawtransaction": "02000000000101e0bf2e41513d8b4619ba7e86d54ae169eafc6eb375a9792d6f54e3c74e43c6e200000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29215d331e9cda71e0df05cf5809e417a148a2b0aa5279697c6c873c0a44d46a3580c6baff60d1ee609bd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001017586b86bc163821cd6b659640efd899c63173e2317436686e63e8e3368fa8ec800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a298361e9b61b93c70680ebfc9f5db9ec6456157f10da5722c9c577426d29610c2a694f715838bea74b93d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "status": "valid" } } @@ -8471,7 +8471,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -8526,7 +8526,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8545,7 +8545,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999985664, "btc_fee": 14336, - "rawtransaction": "02000000000101acfe9563247aa147ff7345fd78032f9fc16310fd2c9b16128d2815065266bbca00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000226a2088db431b6c4c9f2fb3559f147f45361ee71dea1835f3bf72703ddbb3f716320300ba052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001012e0e50c19f5074eea1d8c17cd6879adcb051c25abbe3e1a9328f06faf229116000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000226a20c96ff42fd9bc9aecb9251b0a6417472b0690430266ca7cfe494b636da1f2197500ba052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8565,7 +8565,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: `bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -8626,7 +8626,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8650,7 +8650,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949919549, "btc_fee": 14951, - "rawtransaction": "0200000000010127689fc33d59b81d7d12b10aaf9183a2be1b0a2a412e1a3be468aa9a3ec834ff010000001600148608770a6406a8a7beca45d41540c52679400f84ffffffff0200000000000000002c6a2a0d5642205c710ec6fc53b5dfb6f050249f9fd8167056f17332d28546f3bdf8435247f5a5107d7bd118993dc70927010000001600148608770a6406a8a7beca45d41540c52679400f8402000000000000", + "rawtransaction": "02000000000101e3f61985ad574271f36d9aa38a689b45a90eb31282c733525079b9be999e2f9c010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b4ffffffff0200000000000000002c6a2a4277113ca832cfadb6d4e12145ec87337a9894e147e80622109d08e3ed56eaef9652bd96b7ead91554df3dc70927010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8676,7 +8676,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (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: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8731,14 +8731,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -8757,7 +8757,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999985602, "btc_fee": 14398, - "rawtransaction": "02000000000101cce8e52f637d6ef7002fa8d80f80a35afe711ce962d6dce62de66e04e711675800000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a21460e4f17c4ee415760dd37656c9e18a0612a98cd919da475efb4c1ca3a9a63372ac2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "0200000000010117d0c94606515db5d229f7068ab8f8b313ed418d31799d5245c932e70fe2a39700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a217c09d61d451fcc78daa6dfaf67020c301b75fe683edb01d4f2fd53209555b2be5bc2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8778,10 +8778,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -8842,10 +8842,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "transfer_destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "lock": false, "reset": false, @@ -8858,7 +8858,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999982964, "btc_fee": 16490, - "rawtransaction": "020000000001017072fef69154a3be8d186fe82ae4f18bf29e97570c985a34c103200916cae9ae00000000160014686905953261342337f07034895a218e560b28aaffffffff032202000000000000160014686905953261342337f07034895a218e560b28aa0000000000000000236a21e6c64dca52277f0eb1f6e4aabbbc67dcdbad286c0e6857c5d14e2d784528c6169774af052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101327c00ce43ede25debe22ed780dac3ba76d392a9ba648307f515b626983b9be800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff032202000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff7480000000000000000236a21e04797aade082d95379ff0cfde5da76db1a9aca46565564ebd5c7cc3b9711a964274af052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8887,9 +8887,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MYASSETA` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5,bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (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` @@ -8946,16 +8946,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset_dest_quant_list": [ [ "XCP", - "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", 1 ], [ "MYASSETA", - "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", 2 ] ], @@ -8963,26 +8963,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280686905953261342337f07034895a218e560b28aa8090f15ced94700f317670d7d923e986e2a6e5808a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280aa5f1fcf04bccbd58dfaa75c74514113e56ff74880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999942870, "btc_fee": 55130, - "rawtransaction": "02000000000104f9c6dfed5f07929e139887bafac0993494e637add2497138dd8009f6c16726f900000000160014686905953261342337f07034895a218e560b28aaffffffffa4476ae5786629eb181d100b95a71b1e2d92cf3bdd4d8b56aac921cff475746e00000000160014686905953261342337f07034895a218e560b28aaffffffffa4ddafcafeeed7de906289486c0404e8c2c70162607c9e0b70ce208afcde424300000000160014686905953261342337f07034895a218e560b28aaffffffff636e34616cf788484738fa14a9317d5ed924d058930efe9a7c388a88c366ab7200000000160014686905953261342337f07034895a218e560b28aaffffffff03e8030000000000006951210230322ce4131a395c7acc06dae7e2992102a38d1d2c7bd893cfcf7bfc141e4dc82103d9cc6fb00baf2a605481a1b9f0011c5ac0e86608a9e0e1feb0d02b9490c69cee2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121033f322ce4131a395c7aef71b715e69405b511ec290359b3684c6621dd9a4846ad2102f166a720faf3c7f4248e98cf80d6c579296e86ae4c606b7192984ef8fca9b0762103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aed6e816a804000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000000000000", + "rawtransaction": "020000000001040dea2852b03c6db35c901546ffbbaebe82b32effb00adc6c763c9323ca41e24e00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffffd57a84ba84f216251a91df650d6b7116bf3b34922a157d82884f3d5c88678a0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff377647a5bd5470af2f29be5e89fbfe894378660e3eb587b09f3ce528215c9c0b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff1f89794624b6dd4e5cdb4d3a46b6f08abc0f8c40cad8f8f03d83cb294ef2b5fe00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03e8030000000000006951210359b1740fd686fce25029f048f4d762e7b9cfe85d1af814e08e031b6682763dcd21020336c3c2524555b015219669c830c4f6d6ae1751359a1b08bdc43930dd723abf210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee8030000000000006951210356b1740fd686fce2500a8725061159d9544b5496c36075cc65574a27919352402103f47e0b2a91f4f85b701ef026d3692fdd02755da353c8a1879f8c5c5cb11d169d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aed6e816a804000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -8998,7 +8998,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -9056,7 +9056,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9073,7 +9073,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9087,7 +9087,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999984495, "btc_fee": 15505, - "rawtransaction": "020000000001015800135236a76b4f938c410e86bb5fce9c004a5ef1922a87fc29264c8d23852100000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000356a335a780e9070f948142ebeddadeb2521a4c14e6033814daf3430c4e45fcaffb365912347bba97aeca6fe36b36500d9cee59cdab06fb5052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101ee39364187a27e574280596410b70f4847254d3f3aff821fcd8a0f9829133b3100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000356a3373690747fb312f865b7593ea2d05ea3fe290d77e97b1bc967973240e6d379222a28d90fd71664cd13dc8f4773ffbfd91df14f06fb5052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9113,8 +9113,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address that will be receiving the asset + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -9174,8 +9174,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9191,19 +9191,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88090f15ced94700f317670d7d923e986e2a6e5808a", + "data": "434e54525052545902000000000000000100000000000003e880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999984803, "btc_fee": 15197, - "rawtransaction": "0200000000010121ffc40b4babdaf128b3d6f09a53c1bab273d4e0a734b96bf46fa00f1662747e00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000306a2ee6a649a011192806ac527ea86d0bd41bb6826d3ff4e0dcb4a01258d3abf26300ebe9279911ff91b83be6f6e0a58da3b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001015f572b10e82ae4e7245d3788318ec4699543a4e925fc2232a2de2c9271c49c8100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000306a2ee796c2a399c14ecdd3bf731ace596700d4468848a6fdb759d1f64c8cfdb93a279ea80c4a861fba8a3e3f8c180e25a3b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "memo": null, "quantity_normalized": "0.00001000" } @@ -9217,8 +9217,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be sending - + destination: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending + + destination: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -9272,23 +9272,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e545250525459048090f15ced94700f317670d7d923e986e2a6e5808a07ffff", + "data": "434e5452505254590480e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985602, "btc_fee": 14398, - "rawtransaction": "02000000000101f2fc6394b0f94ec93ecc6b55feb1eb3ec13975478af8c068601dbf94ad1ad6c000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a2143e0116dc11441d0691988addd697612becdf8b8783aa665e9d35ab6df0d163980c2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101f01cf8227b24abff6c956382c4b2ebbeba4380b6f6290d16d7f3d1888da0998b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a21b8ac5ec1c7c141350f22bbc7877bfd56e15fe9314cfecc34c55bc586ce69dbc72ac2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "flags": 7, "memo": "ffff" } @@ -9302,8 +9302,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: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9356,8 +9356,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "quantity": 1000 }, "name": "dispense", @@ -9366,7 +9366,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949837926, "btc_fee": 15074, - "rawtransaction": "02000000000101e555f1b41c7905b16de8957b97e6e9d7e259b20e03e48cc7deb22606b556d2db0200000016001490f15ced94700f317670d7d923e986e2a6e5808affffffff03e8030000000000001600141fe70fcf646daca82d24519e04b3c290bc4ee84500000000000000000c6a0a3f7d14e1676410918345668808270100000016001490f15ced94700f317670d7d923e986e2a6e5808a02000000000000", + "rawtransaction": "02000000000101f2919794fe633be2cb9c213e5644ca18b8d5064da3a1134edd8704d776a21d1102000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652baffffffff03e803000000000000160014ff7bfd93f2bf72a1088e1cdf07174f46f787c02600000000000000000c6a0a1e1e622ba185e90744bf6688082701000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9383,7 +9383,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be issuing the asset + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -9468,7 +9468,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9499,7 +9499,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999984741, "btc_fee": 15259, - "rawtransaction": "02000000000101510bcc8fe9fc415d85811de8ac1ae712afc80811ee6750f87cf9d2ef08211ded00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000316a2fa6eada406a9ad6ffe5caadc6ef30fb264cacd56c04c540bde0825f322d3b46fd970cd37c566d9bc876347dc34a0b7665b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001012a035812009894c8e7773b1d3a74269e92d17e91c4061aed16f13ca471a66f0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000316a2f04837b856423fea56cbc0aaccecd1342cc3751ec4c51b50e00cc5fc3939103c81dfe27dede267cf8fad823f319dd7a65b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9538,7 +9538,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address that will be minting the asset + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9593,13 +9593,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9611,7 +9611,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999986402, "btc_fee": 13598, - "rawtransaction": "02000000000101ac867ba5bcd37c6200c517353d2367acd3ad91913308be7a410789f06380191000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000166a14254fef3d6914fc2e179156b6a1f67ff27f61e40fe2bc052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101de0c787ae9cc816f11a997c834c15422b17f83ce29db74bc454956f6c4de267800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000166a1474ca8fac46f44178e095034e94a2d1b7d50beb40e2bc052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9630,10 +9630,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: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address from which the assets are attached + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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: `a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1` (str, optional) - The utxo to attach the assets to + + destination: `6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9686,8 +9686,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9700,12 +9700,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c613032646662636130646138383836613630333932636533653466316564393636316264376461373862323661316463316461653830393137613230653965313a317c5843507c31303030", + "data": "434e54525052545964626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c366537343964363866663964393938633138313733363561363035373633323431363931633532383362363137366366636563303235396262306565326336663a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999914612, "btc_fee": 82388, - "rawtransaction": "0200000000010605716071e675587c33579750bed5c8ec1bf237c891072db4b0e92fc18cce527100000000160014686905953261342337f07034895a218e560b28aaffffffff35a8bc7ff88a7cd9ed4a5cceaa0cc2133a6845df0d97c5ace72318c08b6584cc00000000160014686905953261342337f07034895a218e560b28aaffffffff73de384f7bc8b95be01b89efefae251fc1e175901575151136ff1a102b52f35700000000160014686905953261342337f07034895a218e560b28aafffffffff158ad7083c6009e4b0c115784f32f43de1c89d8d06beb110b6964947da9230800000000160014686905953261342337f07034895a218e560b28aaffffffffa000a6e15a6586e1bb10ae296d2fc31dbe1765ff667bf890c26b2575ec77368600000000160014686905953261342337f07034895a218e560b28aafffffffff121c74e33ad45470c87d239644e57f356d017da1ec367b7ed1400201ea62bfe00000000160014686905953261342337f07034895a218e560b28aaffffffff04e803000000000000695121026cf2c05f374b9ff0e2982577c10a457035d1aec17cf64cd05a03f625ec753534210258b52ebe440063c6e38e7a504515cd5a7dd9ec1223181f57f3a1bfa6a0b767d82103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121036cf2c05f374b9ff0e29d7770d2464c3967c0ad823bf618d94949a56bf2203c8721034ffb69be12086cc2f7dc281c564cc9027ecae447291d4f13a2a8bcf5a7e7349a2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee8030000000000006951210246f2c05f374b9ff0e2997e718244457d09e2cbce39ff1a8a2c7ac05f9411591f21022bc25f88236a08f593bd1f24347eff634fae87764d7c2a2b92918dc2c6d504072103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153ae745e22fc06000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000002000002000000000000", + "rawtransaction": "0200000000010617008f4f372adb06a763d40a362f96e2e2740a0555de276dd5c8a1ff0650f2fa00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748fffffffff528117da56199d9812d06e4ef27ed43620b916671babdd567a37a807614114700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff76667f1d58f0b61461070d53d8bb7a55789c81b0a42ce2cad54bfe5d07b9832200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff3a6e9e132bbe15f2b73d289f8abccc38b2894bfcb946091ed09d869a042b328200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff54ee4eeab8d8a9eb4b8674287e88971334d615f78698f49de365af94e34114b600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0f821efaabb6e0e6971b5914b00bb4a770e9c495e67ed297762d8752328f8b0800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff04e80300000000000069512102a750859296f9e5fa5855687c9443f3876369e4961a2d7e818363d1f300ab7b852103ed73bb9e8a0b92b1f28c4b0a44cc55a7eb92b65b6df3f77aad1d54c0a158297d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee80300000000000069512102a750859296f9e5fa58096c79df53fbcf6f6ce59d47742ecede6cdea241ee7d182103e874eed8845596e0b7c443534d9605a6bac5e54872e6a634ae410196a8597acb210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee803000000000000695121028d50859296f9e5fa58036929800df38a0f4c84d947732dc8eb0de89274d94bb72103db46dae9b26ca78382f67b602fa034918ca6832b178596069b7863f4983c1f98210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553ae745e22fc06000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9722,8 +9722,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: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to detach the assets to + + utxo: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -9777,8 +9777,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9791,12 +9791,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964636165323331393231363530313162616431663638333863386532333037613935666664323463363633303836643361623164336339323932373265653639343a307c626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c5843507c31303030", + "data": "434e54525052545964613763316533666335643338353462643362333135306632313531393432343436353236663538626530653331333837316261386530333337333131353938303a307c626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950028023, "btc_fee": 48977, - "rawtransaction": "02000000000103bed92378948a8c927b0f4f30654cfb1b479559c13bde38549c7e990d6864e09d010000001600148463c20478eb8c4d7505c47952663c0554394225fffffffff8f202bf763d775bbb5d00741c9485adf494ef17fdad1a5c7863fd9266ef4a1d000000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff7b72603f4dd2f053893ff2281d5541a63914fba299dac012440bca1e81e2a262010000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff04e803000000000000695121037dfeae5b8fecddbfdff1111007d4ab43619904a5c5da9b43317a12d5fb57a46021031178599da07a77c470c1c39ab29163cad6378555a4eda67b658963f5fc4f0ad021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee803000000000000695121027dfeae5b8fecddbfdff64b435bd4af403dce03aac4d09a0e31780490ac10f8d62102527549d1fc2e2e823e9680d7b09b748f9362d409fceeee7e64ce73fcff120b5921036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee8030000000000006951210357feae5b8fecddbfdfe219150c82ad0e00e865efc1da9a42531b76e49d619ca2210222403aa5c54844f447a0faafd4f707f8e254b36397dd9e4d01ba0297cd2b39f021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aef76e0b27010000001600148463c20478eb8c4d7505c47952663c055439422502000002000002000000000000", + "rawtransaction": "02000000000103add2da36e3c80ec048f687ac495f3292dcab0d29f5898eb447e64dbe5ef76f2a010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff2809c45f929d5db89e3bd6e3b3557330c64ae9cc1e0a7c6dbbe4ce90596c62bb000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffffa1980cf0c44a39398be3125f10f7a8eccd9a915fe1c121ea9001b44c410dad1d010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff04e8030000000000006951210273d9564b709bebfe06c33885d9490a4153d102da83c9e97be48ed4a6a53d893c21037ce4e1a59dca1a69f97747044000cc02a68b0132b17a0ef41a499688cc68024b2103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210373d9564b709bebfe06c26981894f5c4304870e8680cbec33e48995b0a77d88b521032ab2e0f8c6985a35a57a12460702cc51f2c45b30b42d4dbf191bcad5cf3f5d062103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210359d9564b709bebfe06936cc2c00e0e0e6df167c281c1ec7f86eae7c4960cbcb521034c82d394a8fb235dcb4373327532fa6493b36357811f3dc52971a1b9ae093a732103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aef76e0b27010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b702000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9865,8 +9865,8 @@ Returns the valid assets "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "owner": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "owner": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false, "supply": 100000000000, @@ -9874,16 +9874,16 @@ Returns the valid assets "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1729855708, - "last_issuance_block_time": 1729855708, + "first_issuance_block_time": 1729876053, + "last_issuance_block_time": 1729876053, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -9891,16 +9891,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "owner": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "issuer": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "owner": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "divisible": true, "locked": false, "supply": 100000000000, @@ -9908,16 +9908,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729855557, - "last_issuance_block_time": 1729855557, + "first_issuance_block_time": 1729875894, + "last_issuance_block_time": 1729875894, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -9925,16 +9925,16 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -9942,8 +9942,8 @@ Returns the valid assets "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" } ], @@ -9971,8 +9971,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -9980,8 +9980,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729855391, - "last_issuance_block_time": 1729855402, + "first_issuance_block_time": 1729875755, + "last_issuance_block_time": 1729875767, "supply_normalized": "100.00000000" } } @@ -10012,7 +10012,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10020,14 +10020,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10035,7 +10035,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10053,7 +10053,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10065,7 +10065,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -10119,9 +10119,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10136,7 +10136,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10162,9 +10162,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10179,7 +10179,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10205,9 +10205,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10222,7 +10222,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10248,9 +10248,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10265,7 +10265,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10291,9 +10291,9 @@ Returns the orders of an asset }, { "tx_index": 52, - "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -10308,7 +10308,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10370,13 +10370,13 @@ Returns the orders of an asset { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10390,7 +10390,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10410,13 +10410,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10430,7 +10430,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10450,13 +10450,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "tx0_index": 49, - "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 50, - "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10470,7 +10470,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10550,20 +10550,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10571,20 +10571,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", + "event": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10592,20 +10592,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10613,20 +10613,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "event": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10638,16 +10638,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10707,12 +10707,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -10724,16 +10724,16 @@ Returns the debits of an asset }, { "block_index": 198, - "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "quantity": 50000000, "action": "issuance fee", - "event": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "event": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "tx_index": 64, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "asset_info": { "divisible": true, "asset_longname": null, @@ -10745,16 +10745,16 @@ Returns the debits of an asset }, { "block_index": 195, - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "event": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855698, + "block_time": 1729876041, "asset_info": { "divisible": true, "asset_longname": null, @@ -10766,16 +10766,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "asset_info": { "divisible": true, "asset_longname": null, @@ -10787,16 +10787,16 @@ Returns the debits of an asset }, { "block_index": 194, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "asset_info": { "divisible": true, "asset_longname": null, @@ -10836,20 +10836,20 @@ Returns the dividends of an asset "result": [ { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10906,14 +10906,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", + "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -10928,20 +10928,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -10956,20 +10956,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -10984,20 +10984,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -11012,7 +11012,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729855391, + "block_time": 1729875755, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11046,10 +11046,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11057,7 +11057,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -11070,10 +11070,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11081,7 +11081,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "divisible": true, "asset_longname": null, @@ -11094,10 +11094,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 55, - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", "block_index": 189, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -11105,7 +11105,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855675, + "block_time": 1729876016, "asset_info": { "divisible": true, "asset_longname": null, @@ -11118,10 +11118,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 44, - "tx_hash": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", + "tx_hash": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", "block_index": 157, - "source": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", - "destination": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", + "destination": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11129,7 +11129,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855557, + "block_time": 1729875894, "asset_info": { "divisible": true, "asset_longname": null, @@ -11142,10 +11142,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 43, - "tx_hash": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b", + "tx_hash": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1", "block_index": 156, - "source": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", - "destination": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", + "source": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", + "destination": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11153,7 +11153,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855552, + "block_time": 1729875891, "asset_info": { "divisible": true, "asset_longname": null, @@ -11204,9 +11204,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11215,7 +11215,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11225,7 +11225,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -11241,9 +11241,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", + "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", "block_index": 142, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11252,7 +11252,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11262,7 +11262,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855466, + "block_time": 1729875840, "asset_info": { "divisible": true, "asset_longname": null, @@ -11278,9 +11278,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", + "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", "block_index": 150, - "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", + "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11288,10 +11288,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 0, - "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11299,7 +11299,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855529, + "block_time": 1729875869, "asset_info": { "divisible": true, "asset_longname": null, @@ -11315,18 +11315,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11336,7 +11336,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -11361,7 +11361,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - The address to return + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11374,9 +11374,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11385,7 +11385,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11395,7 +11395,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -11445,7 +11445,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -11453,7 +11453,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11462,7 +11462,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -11470,7 +11470,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11479,7 +11479,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -11487,7 +11487,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11496,7 +11496,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -11533,27 +11533,27 @@ Returns the dispenses of an asset { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11568,7 +11568,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -11582,27 +11582,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", + "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", "block_index": 147, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11617,7 +11617,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855507, + "block_time": 1729875858, "asset_info": { "divisible": true, "asset_longname": null, @@ -11631,19 +11631,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11651,7 +11651,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11666,7 +11666,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -11680,19 +11680,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11700,7 +11700,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11715,7 +11715,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -11758,8 +11758,8 @@ Returns asset subassets "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -11767,8 +11767,8 @@ Returns asset subassets "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729855564, - "last_issuance_block_time": 1729855564, + "first_issuance_block_time": 1729875901, + "last_issuance_block_time": 1729875901, "supply_normalized": "0.00000000" } ], @@ -11807,10 +11807,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "tx_index": 10, "block_index": 125, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11835,7 +11835,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11875,22 +11875,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", + "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", "tx_index": 13, "block_index": 125, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -11899,22 +11899,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "tx_index": 12, "block_index": 124, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -11923,22 +11923,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -11957,7 +11957,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn` (str, required) - The address of the mints to return + + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -11976,22 +11976,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -12007,7 +12007,7 @@ Returns the mints by address and asset ## Group Orders -### Get Orders [GET /v2/orders{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] +### Get Orders [GET /v2/orders{?status}{&get_asset}{&give_asset}{&cursor}{&limit}{&offset}{&sort}{&verbose}{&show_unconfirmed}] Returns all the orders @@ -12020,6 +12020,10 @@ Returns all the orders + `expired` + `filled` + `cancelled` + + get_asset (str, optional) - The get asset to return + + Default: `None` + + give_asset (str, optional) - The give asset to return + + Default: `None` + cursor (str, optional) - The last index of the orders to return + Default: `None` + limit: `5` (int, optional) - The maximum number of orders to return @@ -12040,9 +12044,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12057,7 +12061,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12083,9 +12087,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12100,7 +12104,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12126,9 +12130,9 @@ Returns all the orders }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12143,7 +12147,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12169,9 +12173,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "block_index": 188, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12186,7 +12190,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12212,9 +12216,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12229,7 +12233,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12264,7 +12268,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade` (str, required) - The hash of the transaction that created the order + + order_hash: `65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff` (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. @@ -12276,9 +12280,9 @@ Returns the information of an order { "result": { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12293,7 +12297,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12325,7 +12329,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c` (str, required) - The hash of the transaction that created the order + + order_hash: `d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1` (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 @@ -12352,13 +12356,13 @@ Returns the order matches of an order { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12372,7 +12376,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12392,13 +12396,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12412,7 +12416,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12442,7 +12446,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c` (str, required) - The hash of the transaction that created the order + + order_hash: `d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1` (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 @@ -12461,15 +12465,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "btc_amount": 2000, - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "status": "valid", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "btc_amount_normalized": "0.00002000" } ], @@ -12513,9 +12517,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12533,7 +12537,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729855657, + "block_time": 1729876008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12559,9 +12563,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "block_index": 188, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12579,7 +12583,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12605,9 +12609,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12625,7 +12629,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12651,9 +12655,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12671,7 +12675,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12697,9 +12701,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12717,7 +12721,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12780,13 +12784,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12803,7 +12807,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12823,13 +12827,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12846,7 +12850,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12866,13 +12870,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "tx0_index": 49, - "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 50, - "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12889,7 +12893,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855589, + "block_time": 1729875934, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12947,13 +12951,13 @@ Returns all the order matches { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12967,7 +12971,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12987,13 +12991,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13007,7 +13011,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13027,13 +13031,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "tx0_index": 49, - "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 50, - "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13047,7 +13051,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13215,66 +13219,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", + "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", "block_index": 121, - "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", + "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729855388, + "block_time": 1729875752, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "bb77500fb17e02a3f324c796f3006a7e396f91a1196457dac24c5fe2b026448e", + "tx_hash": "1175633d80e0c71fc0a539ed361665eb4eb52ab3acbfd25433e460029e7be56f", "block_index": 120, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729855383, + "block_time": 1729875747, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "05f1080bccd39ab5fa23b2ab46d89ac1dea3accb7bd16e62c5120cbc3752b473", + "tx_hash": "a832284ce8b0d7a599d29aa9371faa4f6b7b73dc93a91b3c852cddfda619d104", "block_index": 119, - "source": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", + "source": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729855380, + "block_time": 1729875744, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "a699fe034995e346de923ef0036e71abf388c1f37cba8072eb1cd86f30a510d8", + "tx_hash": "4f1c28ff39c8e163c217e59ec95dcb92c47282cf100fe2b69444e221bee48965", "block_index": 118, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729855377, + "block_time": 1729875741, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "fd379debba78df37b4640be27952adc4e58fef0f396e33c089a43fb778c7e7ca", + "tx_hash": "b863e0316b321904eb30a9f46b5013d3b7ddbc0243ab9641b9ab3ee262c15708", "block_index": 117, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729855374, + "block_time": 1729875737, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13319,9 +13323,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13330,7 +13334,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13340,7 +13344,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -13356,9 +13360,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", + "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", "block_index": 142, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13367,7 +13371,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13377,7 +13381,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855466, + "block_time": 1729875840, "asset_info": { "divisible": true, "asset_longname": null, @@ -13393,9 +13397,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", + "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", "block_index": 150, - "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", + "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13403,10 +13407,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 0, - "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13414,7 +13418,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855529, + "block_time": 1729875869, "asset_info": { "divisible": true, "asset_longname": null, @@ -13430,9 +13434,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13441,7 +13445,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13451,11 +13455,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -13467,18 +13471,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13488,7 +13492,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -13513,7 +13517,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52` (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. @@ -13525,9 +13529,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13536,7 +13540,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13546,7 +13550,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -13568,7 +13572,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54` (str, required) - The hash of the dispenser to return + + dispenser_hash: `2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52` (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 @@ -13588,19 +13592,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13608,7 +13612,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13623,7 +13627,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -13637,19 +13641,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13657,7 +13661,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13672,7 +13676,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -13714,20 +13718,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -13752,7 +13756,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca` (str, required) - The hash of the dividend to return + + dividend_hash: `6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938` (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. @@ -13764,20 +13768,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -13799,7 +13803,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938` (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 @@ -13822,12 +13826,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "tx_index": 41, - "utxo": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "utxo": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "divisible": true, "asset_longname": null, @@ -13839,16 +13843,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "address": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "divisible": true, "asset_longname": null, @@ -13894,27 +13898,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 601, @@ -13923,14 +13927,14 @@ Returns all events "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -13941,9 +13945,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 600, @@ -13952,9 +13956,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -13964,24 +13968,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -13991,9 +13995,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 598, @@ -14021,15 +14025,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } } ``` @@ -14107,16 +14111,16 @@ Returns the events filtered by event name "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -14126,9 +14130,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 597, @@ -14138,12 +14142,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -14153,9 +14157,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 594, @@ -14165,24 +14169,24 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 587, @@ -14192,24 +14196,24 @@ Returns the events filtered by event name "asset": "UTXOASSET", "block_index": 200, "calling_function": "utxo move", - "event": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "event": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "quantity": 1000000000, "tx_index": 67, - "utxo": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", - "utxo_address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "block_time": 1729855721, + "utxo": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", + "utxo_address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" }, - "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "block_index": 200, - "block_time": 1729855721 + "block_time": 1729876064 }, { "event_index": 584, @@ -14219,24 +14223,24 @@ Returns the events filtered by event name "asset": "UTXOASSET", "block_index": 200, "calling_function": "utxo move", - "event": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "event": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", "quantity": 1000000000, "tx_index": 66, - "utxo": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", - "utxo_address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", - "block_time": 1729855721, + "utxo": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", + "utxo_address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" }, - "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", "block_index": 200, - "block_time": 1729855721 + "block_time": 1729876064 } ], "next_cursor": 575, @@ -14292,27 +14296,27 @@ Returns all the dispenses { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14327,7 +14331,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -14341,19 +14345,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14361,7 +14365,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14376,11 +14380,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -14390,27 +14394,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", + "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", "block_index": 147, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14425,7 +14429,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855507, + "block_time": 1729875858, "asset_info": { "divisible": true, "asset_longname": null, @@ -14439,19 +14443,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14459,7 +14463,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14474,7 +14478,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -14488,19 +14492,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14508,7 +14512,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14523,7 +14527,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -14565,10 +14569,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14576,7 +14580,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -14589,10 +14593,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14600,11 +14604,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -14613,10 +14617,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 67, - "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "block_index": 200, - "source": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", - "destination": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "source": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", + "destination": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -14624,11 +14628,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855721, + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, @@ -14637,10 +14641,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 66, - "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", "block_index": 200, - "source": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", - "destination": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", + "source": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", + "destination": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -14648,11 +14652,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855721, + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, @@ -14661,10 +14665,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 65, - "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", "block_index": 199, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -14672,11 +14676,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855711, + "block_time": 1729876056, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, @@ -14727,14 +14731,14 @@ Returns all the issuances "result": [ { "tx_index": 64, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "transfer": false, "callable": false, "call_date": 0, @@ -14749,20 +14753,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", + "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -14777,20 +14781,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855573, + "block_time": 1729875920, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", + "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -14805,20 +14809,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729855569, + "block_time": 1729875905, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", + "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -14833,20 +14837,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855564, + "block_time": 1729875901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", + "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -14861,7 +14865,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855560, + "block_time": 1729875898, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -14876,7 +14880,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa` (str, required) - The hash of the transaction to return + + tx_hash: `f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5` (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. @@ -14888,14 +14892,14 @@ Returns the issuances of a block { "result": { "tx_index": 64, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "transfer": false, "callable": false, "call_date": 0, @@ -14910,7 +14914,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14942,16 +14946,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -14965,7 +14969,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038` (str, required) - The hash of the transaction to return + + tx_hash: `1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14` (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. @@ -14978,16 +14982,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -15021,9 +15025,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "block_index": 138, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15031,14 +15035,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855452, + "block_time": 1729875826, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", + "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", "block_index": 137, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15046,7 +15050,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855449, + "block_time": 1729875823, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15060,7 +15064,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076` (str, required) - The hash of the transaction to return + + tx_hash: `d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa` (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. @@ -15072,9 +15076,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "block_index": 138, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15082,7 +15086,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855452, + "block_time": 1729875826, "fee_fraction_int_normalized": "0.00000000" } } @@ -15119,10 +15123,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, "block_index": 155, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15147,7 +15151,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15156,10 +15160,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "tx_index": 22, "block_index": 135, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15184,7 +15188,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729855441, + "block_time": 1729875814, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15196,10 +15200,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "tx_index": 18, "block_index": 131, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15224,7 +15228,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729855425, + "block_time": 1729875789, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15236,10 +15240,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "tx_index": 14, "block_index": 130, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15264,7 +15268,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729855421, + "block_time": 1729875786, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15276,10 +15280,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "tx_index": 10, "block_index": 125, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15304,7 +15308,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15373,22 +15377,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -15397,22 +15401,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", + "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", "tx_index": 21, "block_index": 134, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855437, + "block_time": 1729875810, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -15421,22 +15425,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", + "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", "tx_index": 20, "block_index": 133, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855433, + "block_time": 1729875796, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -15445,22 +15449,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", + "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", "tx_index": 19, "block_index": 132, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855430, + "block_time": 1729875793, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -15469,22 +15473,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "89950732f61146e284657ed8a261debb58ae756e387a2be32e820051300a6e9e", + "tx_hash": "37e5f57c83e48468fde220893ad85c68bc067778a970ccc71ebcf96555186026", "tx_index": 17, "block_index": 129, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855418, + "block_time": 1729875782, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -15503,7 +15507,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f` (str, required) - The hash of the fairmint to return + + tx_hash: `ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4` (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. @@ -15514,22 +15518,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -15547,7 +15551,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl,bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8` (str, required) - The addresses to search for + + addresses: `bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8,bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju` (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. @@ -15561,22 +15565,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 2, - "amount": 49.499345, - "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", - "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" + "amount": 5.46e-05, + "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", + "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 2, - "amount": 5.46e-05, - "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", - "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" + "amount": 49.499345, + "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", + "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" }, { "vout": 2, @@ -15584,8 +15588,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 45, "amount": 0.001, - "txid": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", - "address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8" + "txid": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", + "address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju" } ], "next_cursor": null, @@ -15598,7 +15602,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt` (str, required) - The address to search for + + address: `bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l` (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 @@ -15614,28 +15618,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e" + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14" }, { - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038" + "tx_hash": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a" }, { - "tx_hash": "58b515d7a93d1780a591bce9f0aa3cda6fd05a4b8bba4333b5827c826266373d" + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a" }, { - "tx_hash": "dcb7462dcbd114ef7fc72873f9619957cbebfd2828b2e09b938a3849a689fd85" + "tx_hash": "4441e31fc17357751ecc85a725105ff847a383cda23c8d9519c93ab66c150276" }, { - "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc" + "tx_hash": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86" }, { - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6" + "tx_hash": "2459771d0358a9f4e4944129a25f7bd6d7cb7779fcdef57cff34ff7a6d6e7fa0" }, { - "tx_hash": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db" + "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3" }, { - "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" } ], "next_cursor": null, @@ -15648,7 +15652,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr` (str, required) - The address to search for. + + address: `bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw` (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. @@ -15662,7 +15666,7 @@ Get the oldest transaction for an address. { "result": { "block_index": 9, - "tx_hash": "65f8c1c8e7da91338163ee40b6b4d0e95ea48fb578b77e5aa052ff7329046db0" + "tx_hash": "837ad3733d118b7dbd9efcc3cb8e2d4689b54ab79ef5b521696406c4020a5752" } } ``` @@ -15672,7 +15676,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl` (str, required) - The address to search for + + address: `bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8` (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 @@ -15688,20 +15692,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 2, - "amount": 49.499345, - "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827" + "amount": 5.46e-05, + "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 2, - "amount": 5.46e-05, - "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6" + "amount": 49.499345, + "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3" } ], "next_cursor": null, @@ -15714,7 +15718,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5` (str, required) - Address to get pubkey for. + + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (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. @@ -15726,7 +15730,7 @@ Get pubkey for an address. ``` { - "result": "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" + "result": "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" } ``` @@ -15735,7 +15739,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694` (str, required) - The transaction hash + + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (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. @@ -15747,7 +15751,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010168c1dca088790815d9440f3ed3202ca96829935d5d4fbafd1baa4ba3a514c5ef0100000000ffffffff03e8030000000000001600148463c20478eb8c4d7505c47952663c055439422500000000000000000c6a0a5dbc4e444c8895f99bcddced08270100000016001431beb4e814e8733a24cb4bb6b84dcd898b279b4b0247304402201beacf53d1eb4beaa64f76eeb35851b0b1026eae662b2e4c7b25f653a8ca512a02207c14028ed5ef9c984b157c5cc554ab8e02ec8a6a625d178a73c86ac4f4600dfd012102fa89c64bb5ccf3ece97b15aeef067ec0be07538e53088f9654a4e0aba704801b00000000" + "result": "0200000000010162dd492c370b0b3db90c80467cd473b13a3537582e455584cb23148f21f272580100000000ffffffff03e8030000000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b700000000000000000c6a0a96667af1a04c6c644af8dced0827010000001600147456bd897a33076ce4667b017973899a15be77f60247304402205e33ab76c1c59b0f64afdae48c481b7782b32af7f3344bee338d76268a780b70022049e84e2831027ef76f8fba8f9a2799169ee928de4e38db4372a56702b9a83ab0012102d7f4ece0006152226d7ed234de9a4ead39071a2074bf0931525a3471a13b1d6d00000000" } ``` @@ -15842,27 +15846,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69 }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "quantity": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, "asset_info": { "divisible": true, @@ -15873,22 +15877,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -15898,22 +15902,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "block_index": 201, - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -15923,30 +15927,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729855738.770461, + "block_time": 1729876077.4463573, "btc_amount": 0, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "destination": "", "fee": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, - "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", + "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -15960,7 +15964,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, @@ -15991,19 +15995,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -16013,7 +16017,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, @@ -16026,7 +16030,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de` (str, required) - The hash of the transaction to return + + tx_hash: `4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515` (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 @@ -16046,27 +16050,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69 }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "quantity": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, "asset_info": { "divisible": true, @@ -16077,22 +16081,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -16102,22 +16106,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "block_index": 201, - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -16127,30 +16131,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729855738.770461, + "block_time": 1729876077.4463573, "btc_amount": 0, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "destination": "", "fee": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, - "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", + "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -16164,7 +16168,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 2b86295dbf..06f36e1381 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -2261,6 +2261,8 @@ def prepare_order_matches_where(status, other_conditions=None): def get_orders( db, status: OrderStatus = "all", + get_asset: str = None, + give_asset: str = None, cursor: str = None, limit: int = 100, offset: int = None, @@ -2269,16 +2271,23 @@ def get_orders( """ Returns all the orders :param str status: The status of the orders to return + :param str get_asset: The get asset to return + :param str give_asset: The give asset to return :param str cursor: The last index of the orders to return :param int limit: The maximum number of orders to return (e.g. 5) :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) :param str sort: The sort order of the orders to return (overrides the `cursor` parameter) (e.g. expiration:desc) """ + where = {} + if get_asset: + where["get_asset"] = get_asset.upper() + if give_asset: + where["give_asset"] = give_asset.upper() return select_rows( db, "orders", cursor_field="tx_index", - where=prepare_order_where(status), + where=prepare_order_where(status, where), last_cursor=cursor, limit=limit, offset=offset, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index f721dfc6b5..46719c4a6b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -15432,6 +15432,20 @@ ], "description": "The status of the orders to return" }, + { + "name": "get_asset", + "default": null, + "required": false, + "type": "str", + "description": "The get asset to return" + }, + { + "name": "give_asset", + "default": null, + "required": false, + "type": "str", + "description": "The give asset to return" + }, { "name": "cursor", "default": null, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index ed7ccdf8f9..00ecd9e512 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": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", "difficulty": 545259519, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, "confirmed": true }, { "block_index": 200, - "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", - "block_time": 1729855721, - "previous_block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", + "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", + "block_time": 1729876064, + "previous_block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", "difficulty": 545259519, - "ledger_hash": "2af8619b803c6b29b1f2a055316de2c9a9d803e259a14a16463761b47e9cf3e6", - "txlist_hash": "31846f1896caccd2aca7812d9e520696d531a9983e2bb001f2123a3a89a3aec7", - "messages_hash": "9690ded4173551a008579d5c17dedd4b0bc4c8092a5f4714232a8c4a99c6f2a8", + "ledger_hash": "336efe812ffe5396c704c2595aa7eb267beae7a33cf999c18be19a41f374087c", + "txlist_hash": "59daaee3faf1931a718b4990167f6fe8e3f24e16aa871ef809babcace67b6305", + "messages_hash": "cf00d968ac2ce169aa1a4be3eac4353ba1db59fd17e66566b9867accea98b2f2", "transaction_count": 2, "confirmed": true }, { "block_index": 199, - "block_hash": "61c27f5748d586294ad9c442cae688de41da035518b11b299d531fbc8c92a82c", - "block_time": 1729855711, - "previous_block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", + "block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", + "block_time": 1729876056, + "previous_block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", "difficulty": 545259519, - "ledger_hash": "695862b698c288f3575ab76526d762fbb8cadd2840770cd3a6e25392bfcc8ef7", - "txlist_hash": "f402f7327c28f3f618fdc4c02ee814dd38ebf36b527be4d3d45a6c88fed7a0ea", - "messages_hash": "7ae4443aa7388cb1b7871359fd4f53c81032ccef4306818777d8af425c8e72cf", + "ledger_hash": "5d19fa3c92a777c22206d0b7912c5aec9861e57fa9e23968b5b26da8d262d95e", + "txlist_hash": "1f07bdd8d6cfeaa370f401f09c76dd727c7d508ac615dbceaaf76fccee496ec5", + "messages_hash": "9cb0d96db0a3b2d578629764d069eaad58dc349b8fcee18491892b30f85e4d38", "transaction_count": 1, "confirmed": true }, { "block_index": 198, - "block_hash": "598dc4a9e22bc4953deea30024b92b61e74b093f427bbc230e195b7909413ae8", - "block_time": 1729855708, - "previous_block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", + "block_time": 1729876053, + "previous_block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", "difficulty": 545259519, - "ledger_hash": "e1f38930925bd16d72e4063e03bfe1be141a684cdb720f46afeff674d11cc8f7", - "txlist_hash": "edb105e264828d7213766b56c453579079b093d839a4ededa6aa20aa18ad5c0c", - "messages_hash": "d2b8819a871fce75c132452e7bfc05033665284f65c32e5772e45cd234ba6a41", + "ledger_hash": "2a8b021bc5ac61c2570e26def8375d076c33c15f90711aa5fd7de2a26f98ec58", + "txlist_hash": "5d3ed76ad91068aea0d582fa2971a5e1b3a7f894a797780e186c8d7ab3ce4e6f", + "messages_hash": "7d651b3b7f2137114d4a7e66c602b3b8f99bfdef221e7b850f353d87c91d5607", "transaction_count": 1, "confirmed": true }, { "block_index": 197, - "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", - "block_time": 1729855705, - "previous_block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", + "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", + "block_time": 1729876048, + "previous_block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", "difficulty": 545259519, - "ledger_hash": "6d667e5a72d2d202f9a8e7a8e17c905c5c2a5f465961617c81e45892642ac1cb", - "txlist_hash": "a1c33347d3a88485e486bb04b0cbbe78b67a010ba4e3b29afb0a9302b0038835", - "messages_hash": "7e2630bc7f158c56282287639aab6e840784c4b5368007ddda5030db90ce009f", + "ledger_hash": "e03d381575e6fd123f8502086c5c4f4031998824840366947b1a1e82200076f2", + "txlist_hash": "4d905525c1e83f6f3b10de1a15f0e0c638f7e5420e4c7bfa902464194cb56ea4", + "messages_hash": "8f2707e5da86d6c8228ec3dca70cdfc49851e139797c1f8f8f4288647984f1e4", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", "difficulty": 545259519, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", "difficulty": 545259519, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 601, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 600, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" } ], "next_cursor": 598, @@ -256,16 +256,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 597, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" }, { "event_index": 594, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694" + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 201, - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -452,24 +452,24 @@ "result": [ { "type": "order", - "object_id": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "object_id": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "block_index": 184, "confirmed": true, - "block_time": 1729855589 + "block_time": 1729875934 }, { "type": "order", - "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, "confirmed": true, - "block_time": 1729855589 + "block_time": 1729875934 }, { "type": "order_match", - "object_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "block_index": 184, "confirmed": true, - "block_time": 1729855589 + "block_time": 1729875934 } ], "next_cursor": null, @@ -479,13 +479,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "status": "valid", "confirmed": true, - "block_time": 1729855686 + "block_time": 1729876028 } ], "next_cursor": null, @@ -495,15 +495,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "block_index": 195, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729855698, + "block_time": 1729876041, "asset_info": { "divisible": true, "asset_longname": null, @@ -521,14 +521,14 @@ "result": [ { "tx_index": 64, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "transfer": false, "callable": false, "call_date": 0, @@ -543,7 +543,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -555,10 +555,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -566,7 +566,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -579,10 +579,10 @@ }, { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -590,11 +590,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -610,27 +610,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "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": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -664,16 +664,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -683,10 +683,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, "block_index": 155, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -711,7 +711,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -726,22 +726,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -757,17 +757,17 @@ "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -780,17 +780,17 @@ }, { "tx_index": 67, - "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "block_index": 200, - "block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4", - "block_time": 1729855721, + "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", + "block_time": 1729876064, "source": "", "destination": null, "btc_amount": null, "fee": null, "data": null, "supported": true, - "utxos_info": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0 f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "utxos_info": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0 69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", "confirmed": true } ], @@ -799,7 +799,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, @@ -810,7 +810,7 @@ "coinbase": false, "vin": [ { - "hash": "9ba23798dfa802c63ae9b2ebb354cf992067058a3ffef540d8cb0cbbe1cd8292", + "hash": "4f8571a488ab04a918215d4a1f93ee57bdee8f748751083d045a02d7c5d0ec20", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -820,20 +820,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2a77f7c8fd32f3c067edcc9802c3f89e91a15ba3b3954dd99ca872b88d3e5e60ba596d8a555b28c1648729" + "script_pub_key": "6a2a53d62d377950872e33ce781c58a42345cae314bd15ad5cbb2bf248066d88550d0a7fbbbc01cc7240fbca" }, { "value": 4999990000, - "script_pub_key": "0014686905953261342337f07034895a218e560b28aa" + "script_pub_key": "0014aa5f1fcf04bccbd58dfaa75c74514113e56ff748" } ], "vtxinwit": [ - "304402206b4b2301efc059ef9e667e139f19c917a399a9e5d132f559362105df595394a10220093c25f79c9f75a2af112766ff4301af64e980e32d36643d509eb28a9ecb8bb101", - "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" + "304402200288c8930b6f242c23cd4b2c836cdd35a7f36120a57ad0a8a74a2a5634326ea402203c74a2e6277f1bb7e2d1c7162240daf44dbb75309807fe199a4dfe4f00e67bc001", + "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" ], "lock_time": 0, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", - "tx_id": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1" + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "tx_id": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f" }, "unpacked_data": { "message_type": "dispenser", @@ -850,7 +850,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -863,18 +863,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "6c51b4747e343ff48ca5d364ad32c4a1dae3b4e27d2bfdca7df2c65321867dc2", + "hash": "1a4736dcb5b00f8859901726b6a731d7ddd53fde667085c039e038518019c026", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -884,20 +884,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e8e584f24970cedd8197e136ca5d7eb68b26e5c59a720d1ab4b7a064005f7b4bfbdf1f532cae32c58b84b46576dc9" + "script_pub_key": "6a2e57e589f583ae5424e2cac4d48559fda7d7431a2a617073832f3eb2f7d5e48c232aa072921da9f0ca2cdbeb9f7cfd" }, { "value": 4999970000, - "script_pub_key": "00141fe70fcf646daca82d24519e04b3c290bc4ee845" + "script_pub_key": "0014ff7bfd93f2bf72a1088e1cdf07174f46f787c026" } ], "vtxinwit": [ - "304402202f41770c5d29a3b62b94a88f08de624cb08c7b0497062c9d4ca626c014856bf50220021f85fbff19e0de3b8f84f65cb033350387af21f40e9b9c7d5d2233bfc665e601", - "03ed0f47d2926fe2a31d01c87c5879c72d66524aa47e3f26c78259bfccc960c451" + "3044022010433c1e6d727485a461ff6e7bf52076e8005d7829c43cff5f2e0bae9ca8d36902205d3f93066744c90a7e5b9ffbfef092f666962e4f14679ecf69201db42447d5d101", + "0271e87f8220264edfff84c2d6d6e03361443ffa736d66fc4cc0ea261e2fa56d73" ], "lock_time": 0, - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", - "tx_id": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de" + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_id": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515" }, "unpacked_data": { "message_type": "enhanced_send", @@ -905,7 +905,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -932,17 +932,17 @@ "/v2/transactions/": { "result": { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -957,17 +957,17 @@ "/v2/transactions/": { "result": { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", - "block_time": 1729855734, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", + "block_time": 1729876074, + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -986,12 +986,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 601, @@ -1000,14 +1000,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1018,9 +1018,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 600, @@ -1029,9 +1029,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -1041,24 +1041,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1068,9 +1068,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 598, @@ -1078,14 +1078,14 @@ "params": { "asset": "XCP", "block_index": 201, - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "msg_index": 1, "quantity": 1500000000, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "status": "valid", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1095,9 +1095,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 597, @@ -1110,12 +1110,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 601, @@ -1124,14 +1124,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1142,9 +1142,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 600, @@ -1153,9 +1153,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -1165,24 +1165,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1192,9 +1192,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 598, @@ -1202,14 +1202,14 @@ "params": { "asset": "XCP", "block_index": 201, - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "msg_index": 1, "quantity": 1500000000, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "status": "valid", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1219,9 +1219,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 597, @@ -1231,10 +1231,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1242,7 +1242,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1255,10 +1255,10 @@ }, { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1266,11 +1266,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1286,27 +1286,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1321,7 +1321,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1342,16 +1342,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1361,9 +1361,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 597, @@ -1373,12 +1373,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1388,9 +1388,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 594, @@ -1400,24 +1400,24 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": null, @@ -1429,16 +1429,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1448,9 +1448,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 597, @@ -1460,12 +1460,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1475,9 +1475,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 594, @@ -1487,24 +1487,24 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": null, @@ -1517,7 +1517,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1527,7 +1527,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1538,7 +1538,7 @@ "total": 97999999980, "addresses": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "utxo": null, "utxo_address": null, "quantity": 97999999980, @@ -1548,7 +1548,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1559,7 +1559,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1569,7 +1569,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1580,7 +1580,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1590,7 +1590,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1601,7 +1601,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1611,7 +1611,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1625,17 +1625,17 @@ "result": [ { "tx_index": 63, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", - "block_time": 1729855705, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", + "block_time": 1729876048, + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "btc_amount": 4000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", + "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1648,17 +1648,17 @@ }, { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 196, - "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", - "block_time": 1729855702, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", + "block_time": 1729876044, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", + "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -1675,7 +1675,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -1687,17 +1687,17 @@ }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", - "block_time": 1729855691, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", + "block_time": 1729876032, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", + "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1733,23 +1733,23 @@ }, { "tx_index": 58, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", - "block_time": 1729855686, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", + "block_time": 1729876028, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "supported": true, - "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", + "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "status": "valid" } }, @@ -1757,17 +1757,17 @@ }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 191, - "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", - "block_time": 1729855683, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", + "block_time": 1729876024, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", + "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1814,27 +1814,27 @@ "asset": "TESTLOCKDESC", "block_index": 197, "btc_amount": 4000, - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "dispense_index": 0, "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "tx_index": 63, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 }, { "event_index": 560, @@ -1843,64 +1843,64 @@ "asset": "TESTLOCKDESC", "dispense_count": 1, "give_remaining": 6000, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": 0, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "give_remaining_normalized": "0.00006000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 }, { "event_index": 559, "event": "CREDIT", "params": { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "block_index": 197, "calling_function": "dispense", - "event": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "event": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "quantity": 4000, "tx_index": 63, "utxo": null, "utxo_address": null, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "0.00004000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 }, { "event_index": 557, "event": "NEW_TRANSACTION", "params": { - "block_hash": "54ae3ec55d60df0908293c6e306e06d2297502663bd1b0d0148f538e964e7c57", + "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", "block_index": 197, - "block_time": 1729855705, + "block_time": 1729876048, "btc_amount": 4000, "data": "0d00", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "fee": 0, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "tx_index": 63, - "utxos_info": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5:0", + "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -1910,9 +1910,9 @@ }, "btc_amount_normalized": "0.00004000" }, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "block_time": 1729855705 + "block_time": 1729876048 } ], "next_cursor": 557, @@ -1921,17 +1921,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "quantity": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, "asset_info": { "divisible": true, @@ -1942,22 +1942,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1967,22 +1967,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "block_index": 201, - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -1992,30 +1992,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729855738.770461, + "block_time": 1729876077.4463573, "btc_amount": 0, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "destination": "", "fee": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, - "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", + "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -2029,7 +2029,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, @@ -2038,7 +2038,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2046,14 +2046,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2061,14 +2061,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2083,7 +2083,7 @@ "quantity_normalized": "826.99937000" }, { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2091,7 +2091,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2104,7 +2104,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -2126,16 +2126,16 @@ "result": [ { "block_index": 192, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,16 +2147,16 @@ }, { "block_index": 184, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "event": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "asset_info": { "divisible": true, "asset_longname": null, @@ -2168,20 +2168,20 @@ }, { "block_index": 161, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428956980101314", "quantity": 100000000000, "calling_function": "issuance", - "event": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", + "event": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", "tx_index": 48, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855573, + "block_time": 1729875920, "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2189,20 +2189,20 @@ }, { "block_index": 158, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "quantity": 10000000000, "calling_function": "issuance", - "event": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", + "event": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", "tx_index": 45, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855560, + "block_time": 1729875898, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2214,16 +2214,16 @@ "asset": "MYASSETA", "quantity": 1000000000, "calling_function": "attach to utxo", - "event": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", + "event": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", "tx_index": 39, - "utxo": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", - "utxo_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "utxo": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", + "utxo_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "confirmed": true, - "block_time": 1729855536, + "block_time": 1729875878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2237,20 +2237,20 @@ "result": [ { "block_index": 196, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "quantity": 10000, "action": "open dispenser", - "event": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "event": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "tx_index": 62, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855702, + "block_time": 1729876044, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2258,16 +2258,16 @@ }, { "block_index": 193, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "event": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "tx_index": 59, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "asset_info": { "divisible": true, "asset_longname": null, @@ -2279,16 +2279,16 @@ }, { "block_index": 191, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "tx_index": 57, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855683, + "block_time": 1729876024, "asset_info": { "divisible": true, "asset_longname": null, @@ -2300,16 +2300,16 @@ }, { "block_index": 190, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "divisible": true, "asset_longname": null, @@ -2321,20 +2321,20 @@ }, { "block_index": 190, - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "quantity": 20, "action": "mpma send", - "event": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "tx_index": 56, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2353,9 +2353,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", + "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", "block_index": 137, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2363,7 +2363,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855449, + "block_time": 1729875823, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2374,14 +2374,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "37e8c0835b2a01a3842916b149cf508f1126b2ad03f8e4460aed0f734256c794", + "tx_hash": "03c6237993bf4e49be2d4706650f42c8f5e92d5801c440c704be95b788fa3a94", "block_index": 112, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729855359, + "block_time": 1729875719, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2393,10 +2393,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2404,7 +2404,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "divisible": true, "asset_longname": null, @@ -2417,10 +2417,10 @@ }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2428,11 +2428,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2441,10 +2441,10 @@ }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2452,11 +2452,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2465,10 +2465,10 @@ }, { "tx_index": 39, - "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", + "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", "block_index": 152, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2476,11 +2476,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855536, + "block_time": 1729875878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2489,10 +2489,10 @@ }, { "tx_index": 36, - "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", + "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", "block_index": 149, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2500,11 +2500,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855525, + "block_time": 1729875866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2519,10 +2519,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "block_index": 151, - "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", - "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", + "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2530,11 +2530,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855532, + "block_time": 1729875873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2549,10 +2549,10 @@ "result": [ { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2560,11 +2560,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2573,10 +2573,10 @@ }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "MYASSETA", "quantity": 10, "status": "valid", @@ -2584,11 +2584,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2597,10 +2597,10 @@ }, { "tx_index": 39, - "tx_hash": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e", + "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", "block_index": 152, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "ea686dbebb518b5b275a195f907a43eeb5c873c172992277cfcd21a85892851e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2608,11 +2608,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855536, + "block_time": 1729875878, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2621,10 +2621,10 @@ }, { "tx_index": 36, - "tx_hash": "adaad3f2ed51046498e9bedbca2219c8931373c5ffebbf19db7290da14723911", + "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", "block_index": 149, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -2632,11 +2632,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855525, + "block_time": 1729875866, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2651,10 +2651,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "block_index": 151, - "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", - "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", + "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2662,11 +2662,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855532, + "block_time": 1729875873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2681,9 +2681,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2692,7 +2692,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2702,7 +2702,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -2718,9 +2718,9 @@ }, { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2729,7 +2729,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2739,11 +2739,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2760,9 +2760,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2771,7 +2771,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2781,7 +2781,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -2801,19 +2801,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2821,7 +2821,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2836,11 +2836,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -2850,19 +2850,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2870,7 +2870,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2885,7 +2885,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -2899,19 +2899,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2919,7 +2919,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2934,7 +2934,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -2954,19 +2954,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -2974,7 +2974,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2989,11 +2989,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -3003,19 +3003,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3023,7 +3023,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3038,7 +3038,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -3052,19 +3052,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3072,7 +3072,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3087,7 +3087,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -3107,19 +3107,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3127,7 +3127,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3142,7 +3142,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -3156,19 +3156,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3176,7 +3176,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3191,7 +3191,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -3211,19 +3211,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3231,7 +3231,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3246,7 +3246,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -3260,19 +3260,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3280,7 +3280,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3295,7 +3295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -3314,16 +3314,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -3334,14 +3334,14 @@ "result": [ { "tx_index": 48, - "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", + "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -3356,20 +3356,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855573, + "block_time": 1729875920, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", + "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -3384,20 +3384,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729855569, + "block_time": 1729875905, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", + "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -3412,20 +3412,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855564, + "block_time": 1729875901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", + "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -3440,20 +3440,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855560, + "block_time": 1729875898, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 42, - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "msg_index": 0, "block_index": 155, "asset": "A95428958968845068", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -3468,7 +3468,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -3482,8 +3482,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -3491,16 +3491,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -3508,16 +3508,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -3525,16 +3525,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 19, @@ -3542,16 +3542,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729855425, - "last_issuance_block_time": 1729855437, + "first_issuance_block_time": 1729875789, + "last_issuance_block_time": 1729875810, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -3559,8 +3559,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729855406, - "last_issuance_block_time": 1729855421, + "first_issuance_block_time": 1729875771, + "last_issuance_block_time": 1729875786, "supply_normalized": "0.00000000" } ], @@ -3573,8 +3573,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -3582,16 +3582,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -3599,16 +3599,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -3616,16 +3616,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 19, @@ -3633,16 +3633,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729855425, - "last_issuance_block_time": 1729855437, + "first_issuance_block_time": 1729875789, + "last_issuance_block_time": 1729875810, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -3650,8 +3650,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729855406, - "last_issuance_block_time": 1729855421, + "first_issuance_block_time": 1729875771, + "last_issuance_block_time": 1729875786, "supply_normalized": "0.00000000" } ], @@ -3664,8 +3664,8 @@ "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -3673,16 +3673,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -3690,16 +3690,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -3707,16 +3707,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 19, @@ -3724,16 +3724,16 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729855425, - "last_issuance_block_time": 1729855437, + "first_issuance_block_time": 1729875789, + "last_issuance_block_time": 1729875810, "supply_normalized": "0.00000019" }, { "asset": "FAIRMINTB", "asset_id": "1046814266083", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -3741,8 +3741,8 @@ "first_issuance_block_index": 126, "last_issuance_block_index": 130, "confirmed": true, - "first_issuance_block_time": 1729855406, - "last_issuance_block_time": 1729855421, + "first_issuance_block_time": 1729875771, + "last_issuance_block_time": 1729875786, "supply_normalized": "0.00000000" } ], @@ -3753,17 +3753,17 @@ "result": [ { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 196, - "block_hash": "5b9d621e1da41afadc152f9c52a457cc0762b498c94bbc1fedf54e0a113bc0e6", - "block_time": 1729855702, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", + "block_time": 1729876044, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", + "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -3780,7 +3780,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -3792,17 +3792,17 @@ }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "block_hash": "746c7142d0fd932468763be90b37ed23eb3580688f9146a8053e7115bbdeb6de", - "block_time": 1729855691, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", + "block_time": 1729876032, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade:1", + "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3838,23 +3838,23 @@ }, { "tx_index": 58, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_hash": "29365e473551ed8971264ba43f353bb3d839467d3b09f854ff2c3e762b83adb7", - "block_time": 1729855686, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", + "block_time": 1729876028, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "468581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "supported": true, - "utxos_info": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9:1", + "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "status": "valid" } }, @@ -3862,17 +3862,17 @@ }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 191, - "block_hash": "406ea32f3d584039a9e07a304185a0f82bad2c34da4d40c490b3ea060449bfbe", - "block_time": 1729855683, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", + "block_time": 1729876024, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b:1", + "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3908,17 +3908,17 @@ }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "block_hash": "4daf5bebb83a500be3f9cad61932a0a5ff5ec8564481d1d9c4c32632cc54d01f", - "block_time": 1729855679, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "block_hash": "0c22d5f5069d1e48684934297db7b24cd14f263b972adee4e059a1b97f242b5a", + "block_time": 1729876020, + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038090f15ced94700f317670d7d923e986e2a6e5808a80d983ee3c4c35979315d10bc2fb19b3de2121cbe1801fe70fcf646daca82d24519e04b3c290bc4ee845400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8041bc73770b22d4ed185c6ac763c7d17e3a3272ce80ff7bfd93f2bf72a1088e1cdf07174f46f787c026400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", "supported": true, - "utxos_info": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36:0", + "utxos_info": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3926,14 +3926,14 @@ "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "quantity": 10, "memo": null, "memo_is_hex": null, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -3941,7 +3941,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "quantity": 10, "memo": null, "memo_is_hex": null, @@ -3966,20 +3966,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4001,9 +4001,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4018,7 +4018,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4044,9 +4044,9 @@ }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4061,7 +4061,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4087,9 +4087,9 @@ }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4104,7 +4104,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4130,9 +4130,9 @@ }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4147,7 +4147,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4178,10 +4178,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, "block_index": 155, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4206,7 +4206,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4215,10 +4215,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "tx_index": 22, "block_index": 135, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4243,7 +4243,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729855441, + "block_time": 1729875814, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4255,10 +4255,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "tx_index": 18, "block_index": 131, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4283,7 +4283,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729855425, + "block_time": 1729875789, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4295,10 +4295,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "tx_index": 14, "block_index": 130, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4323,7 +4323,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729855421, + "block_time": 1729875786, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4335,10 +4335,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "tx_index": 10, "block_index": 125, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4363,7 +4363,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4381,22 +4381,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4405,22 +4405,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", + "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", "tx_index": 21, "block_index": 134, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855437, + "block_time": 1729875810, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4429,22 +4429,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", + "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", "tx_index": 20, "block_index": 133, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855433, + "block_time": 1729875796, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4453,22 +4453,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", + "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", "tx_index": 19, "block_index": 132, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855430, + "block_time": 1729875793, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4477,22 +4477,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "12a62f789339c67d628a9c12915903aab410aab0ef479b338d82f8e3091e9e11", + "tx_hash": "35e610d6b6a17ffa96a45a34067de3837f4816e5de97bbaa1a4ba6c0e62aabd1", "tx_index": 15, "block_index": 127, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855411, + "block_time": 1729875776, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4501,22 +4501,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4531,22 +4531,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4564,7 +4564,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4576,7 +4576,7 @@ "btc_out": 0, "btc_change": 4999985110, "btc_fee": 14890, - "rawtransaction": "0200000000010116f1a232770af6d5f5505439dcb9d2cf3791929b28c1db61d4a6d457afa250d600000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29c96fd5991b61c73d3d690af4e6852608339044ad2ab65f62787cad4cf1eee04ad9d6a83c7c482a29fbd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101ba9f4524168be2765a45cc71adb2b22281788fd6a477ebf760ed1f395345bbcb00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a2924f04cf861aaab433b87d991283f4abe647b7b8e6bdddce649bd29af4473b032afe6299df3411027f4d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4594,23 +4594,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" }, "name": "btcpay", - "data": "434e5452505254590bbeb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0cd5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "data": "434e5452505254590bd520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c19ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978049, "btc_fee": 18951, - "rawtransaction": "02000000000101801556913b0d5ae24e208195d99fc10eb45d911dc3d749c946004a33e54234a400000000160014686905953261342337f07034895a218e560b28aaffffffff03b80b000000000000160014686905953261342337f07034895a218e560b28aa00000000000000004b6a491ec27218713d127a70b550b5374ebd2311688f7896b9d896e3884b79376a11180b49a7e96c34397e4da2455a515790d2eda23e0c6c5a4b19068c5cda295709de7064fa8711dcf5dc0b419c052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101be150b833f3b3d41e45aa03d1956746c24462d6ee5fa356310ae29f0fac3fdab00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03b80b000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74800000000000000004b6a49c822823fcbefad04994d17ebc7cd5ac8aecd0288a5df471749e7634949cae075fc3c11394264e28ade6e0acb72a1cd42aa03094bf3bb3a54bdafd74d88414cb76cc29609c85e65b0ef419c052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "status": "valid" } } @@ -4619,7 +4619,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "quantity": 1000, "overburn": false }, @@ -4629,27 +4629,27 @@ "btc_out": 1000, "btc_change": 4999985156, "btc_fee": 13844, - "rawtransaction": "02000000000101204c7cf46cffafc2754dfe0a8cc18692abceb9af4538df434291c6cc40c25c4b00000000160014686905953261342337f07034895a218e560b28aaffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000" + "rawtransaction": "0200000000010137ec33628fcdb1a9c50007c3a89a0e6bae5706b02951f6125718f6b4529e541600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade" + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff" }, "name": "cancel", - "data": "434e5452505254594616a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "data": "434e5452505254594665c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985110, "btc_fee": 14890, - "rawtransaction": "02000000000101e0bf2e41513d8b4619ba7e86d54ae169eafc6eb375a9792d6f54e3c74e43c6e200000000160014686905953261342337f07034895a218e560b28aaffffffff0200000000000000002b6a29215d331e9cda71e0df05cf5809e417a148a2b0aa5279697c6c873c0a44d46a3580c6baff60d1ee609bd6b7052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001017586b86bc163821cd6b659640efd899c63173e2317436686e63e8e3368fa8ec800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a298361e9b61b93c70680ebfc9f5db9ec6456157f10da5722c9c577426d29610c2a694f715838bea74b93d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "status": "valid" } } @@ -4658,7 +4658,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4677,7 +4677,7 @@ "btc_out": 0, "btc_change": 4999985664, "btc_fee": 14336, - "rawtransaction": "02000000000101acfe9563247aa147ff7345fd78032f9fc16310fd2c9b16128d2815065266bbca00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000226a2088db431b6c4c9f2fb3559f147f45361ee71dea1835f3bf72703ddbb3f716320300ba052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001012e0e50c19f5074eea1d8c17cd6879adcb051c25abbe3e1a9328f06faf229116000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000226a20c96ff42fd9bc9aecb9251b0a6417472b0690430266ca7cfe494b636da1f2197500ba052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4693,7 +4693,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4717,7 +4717,7 @@ "btc_out": 0, "btc_change": 4949919549, "btc_fee": 14951, - "rawtransaction": "0200000000010127689fc33d59b81d7d12b10aaf9183a2be1b0a2a412e1a3be468aa9a3ec834ff010000001600148608770a6406a8a7beca45d41540c52679400f84ffffffff0200000000000000002c6a2a0d5642205c710ec6fc53b5dfb6f050249f9fd8167056f17332d28546f3bdf8435247f5a5107d7bd118993dc70927010000001600148608770a6406a8a7beca45d41540c52679400f8402000000000000", + "rawtransaction": "02000000000101e3f61985ad574271f36d9aa38a689b45a90eb31282c733525079b9be999e2f9c010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b4ffffffff0200000000000000002c6a2a4277113ca832cfadb6d4e12145ec87337a9894e147e80622109d08e3ed56eaef9652bd96b7ead91554df3dc70927010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b402000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4739,14 +4739,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4765,7 +4765,7 @@ "btc_out": 0, "btc_change": 4999985602, "btc_fee": 14398, - "rawtransaction": "02000000000101cce8e52f637d6ef7002fa8d80f80a35afe711ce962d6dce62de66e04e711675800000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a21460e4f17c4ee415760dd37656c9e18a0612a98cd919da475efb4c1ca3a9a63372ac2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "0200000000010117d0c94606515db5d229f7068ab8f8b313ed418d31799d5245c932e70fe2a39700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a217c09d61d451fcc78daa6dfaf67020c301b75fe683edb01d4f2fd53209555b2be5bc2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -4782,10 +4782,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "transfer_destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "lock": false, "reset": false, @@ -4798,7 +4798,7 @@ "btc_out": 546, "btc_change": 4999982964, "btc_fee": 16490, - "rawtransaction": "020000000001017072fef69154a3be8d186fe82ae4f18bf29e97570c985a34c103200916cae9ae00000000160014686905953261342337f07034895a218e560b28aaffffffff032202000000000000160014686905953261342337f07034895a218e560b28aa0000000000000000236a21e6c64dca52277f0eb1f6e4aabbbc67dcdbad286c0e6857c5d14e2d784528c6169774af052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101327c00ce43ede25debe22ed780dac3ba76d392a9ba648307f515b626983b9be800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff032202000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff7480000000000000000236a21e04797aade082d95379ff0cfde5da76db1a9aca46565564ebd5c7cc3b9711a964274af052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -4823,16 +4823,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset_dest_quant_list": [ [ "XCP", - "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", 1 ], [ "MYASSETA", - "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", 2 ] ], @@ -4840,26 +4840,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280686905953261342337f07034895a218e560b28aa8090f15ced94700f317670d7d923e986e2a6e5808a8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e54525052545903000280aa5f1fcf04bccbd58dfaa75c74514113e56ff74880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999942870, "btc_fee": 55130, - "rawtransaction": "02000000000104f9c6dfed5f07929e139887bafac0993494e637add2497138dd8009f6c16726f900000000160014686905953261342337f07034895a218e560b28aaffffffffa4476ae5786629eb181d100b95a71b1e2d92cf3bdd4d8b56aac921cff475746e00000000160014686905953261342337f07034895a218e560b28aaffffffffa4ddafcafeeed7de906289486c0404e8c2c70162607c9e0b70ce208afcde424300000000160014686905953261342337f07034895a218e560b28aaffffffff636e34616cf788484738fa14a9317d5ed924d058930efe9a7c388a88c366ab7200000000160014686905953261342337f07034895a218e560b28aaffffffff03e8030000000000006951210230322ce4131a395c7acc06dae7e2992102a38d1d2c7bd893cfcf7bfc141e4dc82103d9cc6fb00baf2a605481a1b9f0011c5ac0e86608a9e0e1feb0d02b9490c69cee2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121033f322ce4131a395c7aef71b715e69405b511ec290359b3684c6621dd9a4846ad2102f166a720faf3c7f4248e98cf80d6c579296e86ae4c606b7192984ef8fca9b0762103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aed6e816a804000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000000000000", + "rawtransaction": "020000000001040dea2852b03c6db35c901546ffbbaebe82b32effb00adc6c763c9323ca41e24e00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffffd57a84ba84f216251a91df650d6b7116bf3b34922a157d82884f3d5c88678a0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff377647a5bd5470af2f29be5e89fbfe894378660e3eb587b09f3ce528215c9c0b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff1f89794624b6dd4e5cdb4d3a46b6f08abc0f8c40cad8f8f03d83cb294ef2b5fe00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03e8030000000000006951210359b1740fd686fce25029f048f4d762e7b9cfe85d1af814e08e031b6682763dcd21020336c3c2524555b015219669c830c4f6d6ae1751359a1b08bdc43930dd723abf210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee8030000000000006951210356b1740fd686fce2500a8725061159d9544b5496c36075cc65574a27919352402103f47e0b2a91f4f85b701ef026d3692fdd02755da353c8a1879f8c5c5cb11d169d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aed6e816a804000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MYASSETA", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "quantity": 2, "memo": "\"Hello, world!\"", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "quantity": 1, "memo": "\"Hello, world!\"", "memo_is_hex": false @@ -4871,7 +4871,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -4888,7 +4888,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -4902,7 +4902,7 @@ "btc_out": 0, "btc_change": 4999984495, "btc_fee": 15505, - "rawtransaction": "020000000001015800135236a76b4f938c410e86bb5fce9c004a5ef1922a87fc29264c8d23852100000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000356a335a780e9070f948142ebeddadeb2521a4c14e6033814daf3430c4e45fcaffb365912347bba97aeca6fe36b36500d9cee59cdab06fb5052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101ee39364187a27e574280596410b70f4847254d3f3aff821fcd8a0f9829133b3100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000356a3373690747fb312f865b7593ea2d05ea3fe290d77e97b1bc967973240e6d379222a28d90fd71664cd13dc8f4773ffbfd91df14f06fb5052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4924,8 +4924,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "quantity": 1000, "memo": null, @@ -4941,19 +4941,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e88090f15ced94700f317670d7d923e986e2a6e5808a", + "data": "434e54525052545902000000000000000100000000000003e880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999984803, "btc_fee": 15197, - "rawtransaction": "0200000000010121ffc40b4babdaf128b3d6f09a53c1bab273d4e0a734b96bf46fa00f1662747e00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000306a2ee6a649a011192806ac527ea86d0bd41bb6826d3ff4e0dcb4a01258d3abf26300ebe9279911ff91b83be6f6e0a58da3b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001015f572b10e82ae4e7245d3788318ec4699543a4e925fc2232a2de2c9271c49c8100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000306a2ee796c2a399c14ecdd3bf731ace596700d4468848a6fdb759d1f64c8cfdb93a279ea80c4a861fba8a3e3f8c180e25a3b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "memo": null, "quantity_normalized": "0.00001000" } @@ -4963,23 +4963,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e545250525459048090f15ced94700f317670d7d923e986e2a6e5808a07ffff", + "data": "434e5452505254590480e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985602, "btc_fee": 14398, - "rawtransaction": "02000000000101f2fc6394b0f94ec93ecc6b55feb1eb3ec13975478af8c068601dbf94ad1ad6c000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000236a2143e0116dc11441d0691988addd697612becdf8b8783aa665e9d35ab6df0d163980c2b9052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101f01cf8227b24abff6c956382c4b2ebbeba4380b6f6290d16d7f3d1888da0998b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a21b8ac5ec1c7c141350f22bbc7877bfd56e15fe9314cfecc34c55bc586ce69dbc72ac2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "flags": 7, "memo": "ffff" } @@ -4989,8 +4989,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "quantity": 1000 }, "name": "dispense", @@ -4999,7 +4999,7 @@ "btc_out": 1000, "btc_change": 4949837926, "btc_fee": 15074, - "rawtransaction": "02000000000101e555f1b41c7905b16de8957b97e6e9d7e259b20e03e48cc7deb22606b556d2db0200000016001490f15ced94700f317670d7d923e986e2a6e5808affffffff03e8030000000000001600141fe70fcf646daca82d24519e04b3c290bc4ee84500000000000000000c6a0a3f7d14e1676410918345668808270100000016001490f15ced94700f317670d7d923e986e2a6e5808a02000000000000", + "rawtransaction": "02000000000101f2919794fe633be2cb9c213e5644ca18b8d5064da3a1134edd8704d776a21d1102000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652baffffffff03e803000000000000160014ff7bfd93f2bf72a1088e1cdf07174f46f787c02600000000000000000c6a0a1e1e622ba185e90744bf6688082701000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5012,7 +5012,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5043,7 +5043,7 @@ "btc_out": 0, "btc_change": 4999984741, "btc_fee": 15259, - "rawtransaction": "02000000000101510bcc8fe9fc415d85811de8ac1ae712afc80811ee6750f87cf9d2ef08211ded00000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000316a2fa6eada406a9ad6ffe5caadc6ef30fb264cacd56c04c540bde0825f322d3b46fd970cd37c566d9bc876347dc34a0b7665b6052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "020000000001012a035812009894c8e7773b1d3a74269e92d17e91c4061aed16f13ca471a66f0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000316a2f04837b856423fea56cbc0aaccecd1342cc3751ec4c51b50e00cc5fc3939103c81dfe27dede267cf8fad823f319dd7a65b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5078,13 +5078,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5096,7 +5096,7 @@ "btc_out": 0, "btc_change": 4999986402, "btc_fee": 13598, - "rawtransaction": "02000000000101ac867ba5bcd37c6200c517353d2367acd3ad91913308be7a410789f06380191000000000160014686905953261342337f07034895a218e560b28aaffffffff020000000000000000166a14254fef3d6914fc2e179156b6a1f67ff27f61e40fe2bc052a01000000160014686905953261342337f07034895a218e560b28aa02000000000000", + "rawtransaction": "02000000000101de0c787ae9cc816f11a997c834c15422b17f83ce29db74bc454956f6c4de267800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000166a1474ca8fac46f44178e095034e94a2d1b7d50beb40e2bc052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5111,8 +5111,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1:1", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5125,12 +5125,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c613032646662636130646138383836613630333932636533653466316564393636316264376461373862323661316463316461653830393137613230653965313a317c5843507c31303030", + "data": "434e54525052545964626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c366537343964363866663964393938633138313733363561363035373633323431363931633532383362363137366366636563303235396262306565326336663a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999914612, "btc_fee": 82388, - "rawtransaction": "0200000000010605716071e675587c33579750bed5c8ec1bf237c891072db4b0e92fc18cce527100000000160014686905953261342337f07034895a218e560b28aaffffffff35a8bc7ff88a7cd9ed4a5cceaa0cc2133a6845df0d97c5ace72318c08b6584cc00000000160014686905953261342337f07034895a218e560b28aaffffffff73de384f7bc8b95be01b89efefae251fc1e175901575151136ff1a102b52f35700000000160014686905953261342337f07034895a218e560b28aafffffffff158ad7083c6009e4b0c115784f32f43de1c89d8d06beb110b6964947da9230800000000160014686905953261342337f07034895a218e560b28aaffffffffa000a6e15a6586e1bb10ae296d2fc31dbe1765ff667bf890c26b2575ec77368600000000160014686905953261342337f07034895a218e560b28aafffffffff121c74e33ad45470c87d239644e57f356d017da1ec367b7ed1400201ea62bfe00000000160014686905953261342337f07034895a218e560b28aaffffffff04e803000000000000695121026cf2c05f374b9ff0e2982577c10a457035d1aec17cf64cd05a03f625ec753534210258b52ebe440063c6e38e7a504515cd5a7dd9ec1223181f57f3a1bfa6a0b767d82103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee803000000000000695121036cf2c05f374b9ff0e29d7770d2464c3967c0ad823bf618d94949a56bf2203c8721034ffb69be12086cc2f7dc281c564cc9027ecae447291d4f13a2a8bcf5a7e7349a2103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153aee8030000000000006951210246f2c05f374b9ff0e2997e718244457d09e2cbce39ff1a8a2c7ac05f9411591f21022bc25f88236a08f593bd1f24347eff634fae87764d7c2a2b92918dc2c6d504072103f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f153ae745e22fc06000000160014686905953261342337f07034895a218e560b28aa02000002000002000002000002000002000000000000", + "rawtransaction": "0200000000010617008f4f372adb06a763d40a362f96e2e2740a0555de276dd5c8a1ff0650f2fa00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748fffffffff528117da56199d9812d06e4ef27ed43620b916671babdd567a37a807614114700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff76667f1d58f0b61461070d53d8bb7a55789c81b0a42ce2cad54bfe5d07b9832200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff3a6e9e132bbe15f2b73d289f8abccc38b2894bfcb946091ed09d869a042b328200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff54ee4eeab8d8a9eb4b8674287e88971334d615f78698f49de365af94e34114b600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0f821efaabb6e0e6971b5914b00bb4a770e9c495e67ed297762d8752328f8b0800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff04e80300000000000069512102a750859296f9e5fa5855687c9443f3876369e4961a2d7e818363d1f300ab7b852103ed73bb9e8a0b92b1f28c4b0a44cc55a7eb92b65b6df3f77aad1d54c0a158297d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee80300000000000069512102a750859296f9e5fa58096c79df53fbcf6f6ce59d47742ecede6cdea241ee7d182103e874eed8845596e0b7c443534d9605a6bac5e54872e6a634ae410196a8597acb210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee803000000000000695121028d50859296f9e5fa58036929800df38a0f4c84d947732dc8eb0de89274d94bb72103db46dae9b26ca78382f67b602fa034918ca6832b178596069b7863f4983c1f98210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553ae745e22fc06000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5143,8 +5143,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5157,12 +5157,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964636165323331393231363530313162616431663638333863386532333037613935666664323463363633303836643361623164336339323932373265653639343a307c626372743171647035737439666a7679367a78646c73777136676a6b3370336574716b323932776b646e64357c5843507c31303030", + "data": "434e54525052545964613763316533666335643338353462643362333135306632313531393432343436353236663538626530653331333837316261386530333337333131353938303a307c626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950028023, "btc_fee": 48977, - "rawtransaction": "02000000000103bed92378948a8c927b0f4f30654cfb1b479559c13bde38549c7e990d6864e09d010000001600148463c20478eb8c4d7505c47952663c0554394225fffffffff8f202bf763d775bbb5d00741c9485adf494ef17fdad1a5c7863fd9266ef4a1d000000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff7b72603f4dd2f053893ff2281d5541a63914fba299dac012440bca1e81e2a262010000001600148463c20478eb8c4d7505c47952663c0554394225ffffffff04e803000000000000695121037dfeae5b8fecddbfdff1111007d4ab43619904a5c5da9b43317a12d5fb57a46021031178599da07a77c470c1c39ab29163cad6378555a4eda67b658963f5fc4f0ad021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee803000000000000695121027dfeae5b8fecddbfdff64b435bd4af403dce03aac4d09a0e31780490ac10f8d62102527549d1fc2e2e823e9680d7b09b748f9362d409fceeee7e64ce73fcff120b5921036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aee8030000000000006951210357feae5b8fecddbfdfe219150c82ad0e00e865efc1da9a42531b76e49d619ca2210222403aa5c54844f447a0faafd4f707f8e254b36397dd9e4d01ba0297cd2b39f021036a53bde5f3a31dbec2b4f1bfe7cd83bbc73737a54d13013707a01bf799e6a67d53aef76e0b27010000001600148463c20478eb8c4d7505c47952663c055439422502000002000002000000000000", + "rawtransaction": "02000000000103add2da36e3c80ec048f687ac495f3292dcab0d29f5898eb447e64dbe5ef76f2a010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff2809c45f929d5db89e3bd6e3b3557330c64ae9cc1e0a7c6dbbe4ce90596c62bb000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffffa1980cf0c44a39398be3125f10f7a8eccd9a915fe1c121ea9001b44c410dad1d010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff04e8030000000000006951210273d9564b709bebfe06c33885d9490a4153d102da83c9e97be48ed4a6a53d893c21037ce4e1a59dca1a69f97747044000cc02a68b0132b17a0ef41a499688cc68024b2103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210373d9564b709bebfe06c26981894f5c4304870e8680cbec33e48995b0a77d88b521032ab2e0f8c6985a35a57a12460702cc51f2c45b30b42d4dbf191bcad5cf3f5d062103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210359d9564b709bebfe06936cc2c00e0e0e6df167c281c1ec7f86eae7c4960cbcb521034c82d394a8fb235dcb4373327532fa6493b36357811f3dc52971a1b9ae093a732103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aef76e0b27010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b702000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5178,8 +5178,8 @@ "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "owner": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "owner": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false, "supply": 100000000000, @@ -5187,16 +5187,16 @@ "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1729855708, - "last_issuance_block_time": 1729855708, + "first_issuance_block_time": 1729876053, + "last_issuance_block_time": 1729876053, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -5204,16 +5204,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729855560, - "last_issuance_block_time": 1729855569, + "first_issuance_block_time": 1729875898, + "last_issuance_block_time": 1729875905, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "owner": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "issuer": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "owner": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "divisible": true, "locked": false, "supply": 100000000000, @@ -5221,16 +5221,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729855557, - "last_issuance_block_time": 1729855557, + "first_issuance_block_time": 1729875894, + "last_issuance_block_time": 1729875894, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 100000000000, @@ -5238,16 +5238,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729855510, - "last_issuance_block_time": 1729855510, + "first_issuance_block_time": 1729875862, + "last_issuance_block_time": 1729875862, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 40, @@ -5255,8 +5255,8 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729855441, - "last_issuance_block_time": 1729855445, + "first_issuance_block_time": 1729875814, + "last_issuance_block_time": 1729875818, "supply_normalized": "0.00000040" } ], @@ -5268,8 +5268,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 10000000000, @@ -5277,15 +5277,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729855391, - "last_issuance_block_time": 1729855402, + "first_issuance_block_time": 1729875755, + "last_issuance_block_time": 1729875767, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5293,14 +5293,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5308,7 +5308,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5321,7 +5321,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "quantity": 82699937196, "utxo": null, @@ -5343,9 +5343,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5360,7 +5360,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5386,9 +5386,9 @@ }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5403,7 +5403,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5429,9 +5429,9 @@ }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5446,7 +5446,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5472,9 +5472,9 @@ }, { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5489,7 +5489,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5515,9 +5515,9 @@ }, { "tx_index": 52, - "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -5532,7 +5532,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5563,13 +5563,13 @@ "/v2/assets//matches": { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5583,7 +5583,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5603,13 +5603,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5623,7 +5623,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5643,13 +5643,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "tx0_index": 49, - "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 50, - "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5663,7 +5663,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5690,20 +5690,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5711,20 +5711,20 @@ }, { "block_index": 125, - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", + "event": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5732,20 +5732,20 @@ }, { "block_index": 124, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5753,20 +5753,20 @@ }, { "block_index": 124, - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "event": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5778,16 +5778,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5805,12 +5805,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -5822,16 +5822,16 @@ }, { "block_index": 198, - "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "quantity": 50000000, "action": "issuance fee", - "event": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "event": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "tx_index": 64, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "asset_info": { "divisible": true, "asset_longname": null, @@ -5843,16 +5843,16 @@ }, { "block_index": 195, - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "quantity": 1, "action": "destroy", - "event": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "event": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "tx_index": 61, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855698, + "block_time": 1729876041, "asset_info": { "divisible": true, "asset_longname": null, @@ -5864,16 +5864,16 @@ }, { "block_index": 194, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "quantity": 74499387833, "action": "sweep", - "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "asset_info": { "divisible": true, "asset_longname": null, @@ -5885,16 +5885,16 @@ }, { "block_index": 194, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "quantity": 600000, "action": "sweep fee", - "event": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "asset_info": { "divisible": true, "asset_longname": null, @@ -5912,20 +5912,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -5947,14 +5947,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", + "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -5969,20 +5969,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -5997,20 +5997,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -6025,20 +6025,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -6053,7 +6053,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729855391, + "block_time": 1729875755, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6065,10 +6065,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6076,7 +6076,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6089,10 +6089,10 @@ }, { "tx_index": 56, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6100,7 +6100,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "divisible": true, "asset_longname": null, @@ -6113,10 +6113,10 @@ }, { "tx_index": 55, - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", "block_index": 189, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "quantity": 10000, "status": "valid", @@ -6124,7 +6124,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855675, + "block_time": 1729876016, "asset_info": { "divisible": true, "asset_longname": null, @@ -6137,10 +6137,10 @@ }, { "tx_index": 44, - "tx_hash": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", + "tx_hash": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", "block_index": 157, - "source": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", - "destination": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", + "destination": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6148,7 +6148,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855557, + "block_time": 1729875894, "asset_info": { "divisible": true, "asset_longname": null, @@ -6161,10 +6161,10 @@ }, { "tx_index": 43, - "tx_hash": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b", + "tx_hash": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1", "block_index": 156, - "source": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", - "destination": "62a2e2811eca0b4412c0da99a2fb1439a641551d28f23f8953f0d24d3f60727b:0", + "source": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", + "destination": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6172,7 +6172,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855552, + "block_time": 1729875891, "asset_info": { "divisible": true, "asset_longname": null, @@ -6191,9 +6191,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6202,7 +6202,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6212,7 +6212,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6228,9 +6228,9 @@ }, { "tx_index": 29, - "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", + "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", "block_index": 142, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6239,7 +6239,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6249,7 +6249,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855466, + "block_time": 1729875840, "asset_info": { "divisible": true, "asset_longname": null, @@ -6265,9 +6265,9 @@ }, { "tx_index": 30, - "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", + "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", "block_index": 150, - "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", + "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6275,10 +6275,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 0, - "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6286,7 +6286,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855529, + "block_time": 1729875869, "asset_info": { "divisible": true, "asset_longname": null, @@ -6302,18 +6302,18 @@ }, { "tx_index": 33, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6323,7 +6323,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6344,9 +6344,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6355,7 +6355,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6365,7 +6365,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6393,7 +6393,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6401,7 +6401,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6410,7 +6410,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6418,7 +6418,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6427,7 +6427,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6435,7 +6435,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6444,7 +6444,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6459,27 +6459,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6494,7 +6494,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -6508,27 +6508,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", + "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", "block_index": 147, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6543,7 +6543,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855507, + "block_time": 1729875858, "asset_info": { "divisible": true, "asset_longname": null, @@ -6557,19 +6557,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6577,7 +6577,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6592,7 +6592,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6606,19 +6606,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6626,7 +6626,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6641,7 +6641,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -6662,8 +6662,8 @@ "asset": "A95428959745315388", "asset_id": "95428959745315388", "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "owner": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false, "supply": 0, @@ -6671,8 +6671,8 @@ "first_issuance_block_index": 159, "last_issuance_block_index": 159, "confirmed": true, - "first_issuance_block_time": 1729855564, - "last_issuance_block_time": 1729855564, + "first_issuance_block_time": 1729875901, + "last_issuance_block_time": 1729875901, "supply_normalized": "0.00000000" } ], @@ -6682,10 +6682,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "tx_index": 10, "block_index": 125, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6710,7 +6710,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6728,22 +6728,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "4018dd9ed46b6c26351851b3995d2da4e7d72d6a6fdacd8db62866bf2a8c9b7c", + "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", "tx_index": 13, "block_index": 125, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6752,22 +6752,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc", + "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", "tx_index": 12, "block_index": 124, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855399, + "block_time": 1729875763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6776,22 +6776,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6806,22 +6806,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "7dbdbd5055a2501340d61f8d1c20240776ca046fc3faf9d6555925535b7a9487", + "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", "tx_index": 11, "block_index": 123, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855395, + "block_time": 1729875760, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -6837,9 +6837,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6854,7 +6854,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6880,9 +6880,9 @@ }, { "tx_index": 52, - "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6897,7 +6897,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6923,9 +6923,9 @@ }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6940,7 +6940,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6966,9 +6966,9 @@ }, { "tx_index": 54, - "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "block_index": 188, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -6983,7 +6983,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7009,9 +7009,9 @@ }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7026,7 +7026,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7057,9 +7057,9 @@ "/v2/orders/": { "result": { "tx_index": 59, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7074,7 +7074,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729855691, + "block_time": 1729876032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7102,13 +7102,13 @@ "/v2/orders//matches": { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7122,7 +7122,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7142,13 +7142,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7162,7 +7162,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7189,15 +7189,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "btc_amount": 2000, - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "status": "valid", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "btc_amount_normalized": "0.00002000" } ], @@ -7208,9 +7208,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "block_index": 187, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7228,7 +7228,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729855657, + "block_time": 1729876008, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7254,9 +7254,9 @@ }, { "tx_index": 54, - "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "block_index": 188, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7274,7 +7274,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7300,9 +7300,9 @@ }, { "tx_index": 49, - "tx_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", + "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", "block_index": 184, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7320,7 +7320,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855589, + "block_time": 1729875934, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7346,9 +7346,9 @@ }, { "tx_index": 51, - "tx_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "block_index": 188, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7366,7 +7366,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855661, + "block_time": 1729876012, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7392,9 +7392,9 @@ }, { "tx_index": 57, - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", "block_index": 192, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7412,7 +7412,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855686, + "block_time": 1729876028, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7443,13 +7443,13 @@ "/v2/orders///matches": { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7466,7 +7466,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7486,13 +7486,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7509,7 +7509,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7529,13 +7529,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "tx0_index": 49, - "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 50, - "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7552,7 +7552,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729855589, + "block_time": 1729875934, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7578,13 +7578,13 @@ "/v2/order_matches": { "result": [ { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 54, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7598,7 +7598,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7618,13 +7618,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "tx0_index": 51, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 52, - "tx1_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7638,7 +7638,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729855657, + "block_time": 1729876008, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7658,13 +7658,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", + "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", "tx0_index": 49, - "tx0_hash": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx1_index": 50, - "tx1_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7678,7 +7678,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729855589, + "block_time": 1729875934, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7723,66 +7723,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", + "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", "block_index": 121, - "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", + "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729855388, + "block_time": 1729875752, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "bb77500fb17e02a3f324c796f3006a7e396f91a1196457dac24c5fe2b026448e", + "tx_hash": "1175633d80e0c71fc0a539ed361665eb4eb52ab3acbfd25433e460029e7be56f", "block_index": 120, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729855383, + "block_time": 1729875747, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "05f1080bccd39ab5fa23b2ab46d89ac1dea3accb7bd16e62c5120cbc3752b473", + "tx_hash": "a832284ce8b0d7a599d29aa9371faa4f6b7b73dc93a91b3c852cddfda619d104", "block_index": 119, - "source": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", + "source": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729855380, + "block_time": 1729875744, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "a699fe034995e346de923ef0036e71abf388c1f37cba8072eb1cd86f30a510d8", + "tx_hash": "4f1c28ff39c8e163c217e59ec95dcb92c47282cf100fe2b69444e221bee48965", "block_index": 118, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729855377, + "block_time": 1729875741, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "fd379debba78df37b4640be27952adc4e58fef0f396e33c089a43fb778c7e7ca", + "tx_hash": "b863e0316b321904eb30a9f46b5013d3b7ddbc0243ab9641b9ab3ee262c15708", "block_index": 117, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729855374, + "block_time": 1729875737, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7794,9 +7794,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7805,7 +7805,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7815,7 +7815,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -7831,9 +7831,9 @@ }, { "tx_index": 29, - "tx_hash": "08b7b11a5a077979cb815fcc35f59cb0e14c054546581e440aa7f3044fb1d5b7", + "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", "block_index": 142, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7842,7 +7842,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7852,7 +7852,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855466, + "block_time": 1729875840, "asset_info": { "divisible": true, "asset_longname": null, @@ -7868,9 +7868,9 @@ }, { "tx_index": 30, - "tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", + "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", "block_index": 150, - "source": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", + "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7878,10 +7878,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "320511d65a9d996fcc5f823452526b7154e23de1b6cfe046609fdab160736016", - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 0, - "last_status_tx_source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -7889,7 +7889,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855529, + "block_time": 1729875869, "asset_info": { "divisible": true, "asset_longname": null, @@ -7905,9 +7905,9 @@ }, { "tx_index": 62, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7916,7 +7916,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7926,11 +7926,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -7942,18 +7942,18 @@ }, { "tx_index": 33, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7963,7 +7963,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -7984,9 +7984,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7995,7 +7995,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8005,7 +8005,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -8025,19 +8025,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8045,7 +8045,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8060,7 +8060,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -8074,19 +8074,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8094,7 +8094,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8109,7 +8109,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8128,20 +8128,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -8162,20 +8162,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -8198,12 +8198,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "tx_index": 41, - "utxo": "c27d862153c6f27dcafd2b7de2b4e3daa1c432ad64d3a58cf43f347e74b4516c:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "utxo": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "divisible": true, "asset_longname": null, @@ -8215,16 +8215,16 @@ }, { "block_index": 154, - "address": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "address": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "divisible": true, "asset_longname": null, @@ -8245,27 +8245,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 602, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 601, @@ -8274,14 +8274,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -8292,9 +8292,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 600, @@ -8303,9 +8303,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -8315,24 +8315,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -8342,9 +8342,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 598, @@ -8356,15 +8356,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } }, "/v2/events/counts": { @@ -8399,16 +8399,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -8418,9 +8418,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 597, @@ -8430,12 +8430,12 @@ "asset": "XCP", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -8445,9 +8445,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 594, @@ -8457,24 +8457,24 @@ "asset": "MYASSETA", "block_index": 201, "calling_function": "utxo move", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", - "utxo_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "block_time": 1729855734, + "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 }, { "event_index": 587, @@ -8484,24 +8484,24 @@ "asset": "UTXOASSET", "block_index": 200, "calling_function": "utxo move", - "event": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "event": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "quantity": 1000000000, "tx_index": 67, - "utxo": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", - "utxo_address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "block_time": 1729855721, + "utxo": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", + "utxo_address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" }, - "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "block_index": 200, - "block_time": 1729855721 + "block_time": 1729876064 }, { "event_index": 584, @@ -8511,24 +8511,24 @@ "asset": "UTXOASSET", "block_index": 200, "calling_function": "utxo move", - "event": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "event": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", "quantity": 1000000000, "tx_index": 66, - "utxo": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", - "utxo_address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8", - "block_time": 1729855721, + "utxo": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", + "utxo_address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000" }, - "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", "block_index": 200, - "block_time": 1729855721 + "block_time": 1729876064 } ], "next_cursor": 575, @@ -8545,27 +8545,27 @@ { "tx_index": 68, "dispense_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8580,7 +8580,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -8594,19 +8594,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "dbd256b50626b2dec78ce4030eb259e2d7e9e6977b95e86db105791cb4f155e5", + "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8614,7 +8614,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8629,11 +8629,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855705, + "block_time": 1729876048, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -8643,27 +8643,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "1d4aef6692fd63785c1aadfd17ef94f4ad85941c74005dbb5b773d76bf02f2f8", + "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", "block_index": 147, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "destination": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 201, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "last_status_tx_hash": null, - "origin": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8678,7 +8678,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729855507, + "block_time": 1729875858, "asset_info": { "divisible": true, "asset_longname": null, @@ -8692,19 +8692,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "59d67e4b854babc3f597f251dec07d0e6349d1a25f66430c9fe242d9825ece6b", + "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8712,7 +8712,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8727,7 +8727,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855463, + "block_time": 1729875837, "asset_info": { "divisible": true, "asset_longname": null, @@ -8741,19 +8741,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "f9446184b7de0a59262fe064df26c89e5da056acc3a3d1f68b1eb12461661ed4", + "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", "block_index": 140, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "59d8d9f80bc9ed375d11ebab388581f32a02f09141d37d404bfe29f315e0cd54", + "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8761,7 +8761,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8776,7 +8776,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729855460, + "block_time": 1729875832, "asset_info": { "divisible": true, "asset_longname": null, @@ -8795,10 +8795,10 @@ "result": [ { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8806,7 +8806,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -8819,10 +8819,10 @@ }, { "tx_index": 68, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -8830,11 +8830,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -8843,10 +8843,10 @@ }, { "tx_index": 67, - "tx_hash": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", + "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", "block_index": 200, - "source": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", - "destination": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6:0", + "source": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", + "destination": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -8854,11 +8854,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855721, + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, @@ -8867,10 +8867,10 @@ }, { "tx_index": 66, - "tx_hash": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", + "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", "block_index": 200, - "source": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", - "destination": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827:0", + "source": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", + "destination": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -8878,11 +8878,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855721, + "block_time": 1729876064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, @@ -8891,10 +8891,10 @@ }, { "tx_index": 65, - "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", "block_index": 199, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", "asset": "UTXOASSET", "quantity": 1000000000, "status": "valid", @@ -8902,11 +8902,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729855711, + "block_time": 1729876056, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, @@ -8921,14 +8921,14 @@ "result": [ { "tx_index": 64, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "transfer": false, "callable": false, "call_date": 0, @@ -8943,20 +8943,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "e6991ac5cce8ad07bca7c651befc48f3a66bef3fd49e44997ec8cdbb6f972414", + "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -8971,20 +8971,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855573, + "block_time": 1729875920, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "98ed5566000027a5be35cae5c692b7e31f3da85959cb8366360f7df4b0c2cb8d", + "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -8999,20 +8999,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729855569, + "block_time": 1729875905, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "179b4eeeaeceb839983f2fe171c4c012710c2e36b425e4cb95d379258a40ab82", + "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -9027,20 +9027,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855564, + "block_time": 1729875901, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d8288b47f252c37628e4739b6849ab55d7126d3dc4a99fa1eb07bb2a1b78788e", + "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "transfer": false, "callable": false, "call_date": 0, @@ -9055,7 +9055,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855560, + "block_time": 1729875898, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -9066,14 +9066,14 @@ "/v2/issuances/": { "result": { "tx_index": 64, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "transfer": false, "callable": false, "call_date": 0, @@ -9088,7 +9088,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9097,16 +9097,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -9117,16 +9117,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" } ], @@ -9137,9 +9137,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "block_index": 138, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9147,14 +9147,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855452, + "block_time": 1729875826, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "0929c0ea8049ab7aecf5ac7c36a168f50ad4f69f2301660922da39599190a36e", + "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", "block_index": 137, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9162,7 +9162,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855449, + "block_time": 1729875823, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9172,9 +9172,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "block_index": 138, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9182,17 +9182,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729855452, + "block_time": 1729875826, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, "block_index": 155, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9217,7 +9217,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9226,10 +9226,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "tx_index": 22, "block_index": 135, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9254,7 +9254,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729855441, + "block_time": 1729875814, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9266,10 +9266,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "tx_index": 18, "block_index": 131, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9294,7 +9294,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729855425, + "block_time": 1729875789, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9306,10 +9306,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "tx_index": 14, "block_index": 130, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9334,7 +9334,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729855421, + "block_time": 1729875786, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9346,10 +9346,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7dca4b1cda476005a498b2c74a73ef82828a0c0e5defd70885dbc7de248267eb", + "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", "tx_index": 10, "block_index": 125, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9374,7 +9374,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729855402, + "block_time": 1729875767, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9392,22 +9392,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9416,22 +9416,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ade5d83597d302e30eac68adf8858fdc6183fb442533e036ce5034ca367e0df5", + "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", "tx_index": 21, "block_index": 134, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855437, + "block_time": 1729875810, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9440,22 +9440,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "fb305c04d9a2c2f886012d289c8fbe3e02c35510e483b7729234ff260ae631ef", + "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", "tx_index": 20, "block_index": 133, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855433, + "block_time": 1729875796, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9464,22 +9464,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ca7784140db3436563060adfa40fd53d2a9a4f8215acdd61fd0bbd9d6d4b26ea", + "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", "tx_index": 19, "block_index": 132, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "e8741e2dd7c63aed47b61df9470b36fcf8804b2a3e7546322930c2d76fbf7666", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855430, + "block_time": 1729875793, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9488,22 +9488,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "89950732f61146e284657ed8a261debb58ae756e387a2be32e820051300a6e9e", + "tx_hash": "37e5f57c83e48468fde220893ad85c68bc067778a970ccc71ebcf96555186026", "tx_index": 17, "block_index": 129, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "fairminter_tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855418, + "block_time": 1729875782, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9517,22 +9517,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, "block_index": 136, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -9544,22 +9544,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 2, - "amount": 49.499345, - "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827", - "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" + "amount": 5.46e-05, + "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", + "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 2, - "amount": 5.46e-05, - "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6", - "address": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl" + "amount": 49.499345, + "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", + "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" }, { "vout": 2, @@ -9567,8 +9567,8 @@ "value": 100000, "confirmations": 45, "amount": 0.001, - "txid": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168", - "address": "bcrt1qxxcd0jm5jqv7573kvgjnprzfcvh3u9kpc6kpd8" + "txid": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", + "address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju" } ], "next_cursor": null, @@ -9577,28 +9577,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "772e6e54cd8f6b739911e4e16f92fd64a88e034c074b71808bf58a541a27df0e" + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14" }, { - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038" + "tx_hash": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a" }, { - "tx_hash": "58b515d7a93d1780a591bce9f0aa3cda6fd05a4b8bba4333b5827c826266373d" + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a" }, { - "tx_hash": "dcb7462dcbd114ef7fc72873f9619957cbebfd2828b2e09b938a3849a689fd85" + "tx_hash": "4441e31fc17357751ecc85a725105ff847a383cda23c8d9519c93ab66c150276" }, { - "tx_hash": "21f682e9fe2c4c51aad743b559678e8f2032139f18f2bc703af02cddc8887dbc" + "tx_hash": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86" }, { - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6" + "tx_hash": "2459771d0358a9f4e4944129a25f7bd6d7cb7779fcdef57cff34ff7a6d6e7fa0" }, { - "tx_hash": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db" + "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3" }, { - "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3" + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" } ], "next_cursor": null, @@ -9607,36 +9607,36 @@ "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { "block_index": 9, - "tx_hash": "65f8c1c8e7da91338163ee40b6b4d0e95ea48fb578b77e5aa052ff7329046db0" + "tx_hash": "837ad3733d118b7dbd9efcc3cb8e2d4689b54ab79ef5b521696406c4020a5752" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 2, - "amount": 49.499345, - "txid": "ff34c83e9aaa68e43b1a2e412a0a1bbea28391af0ab1127d1db8593dc39f6827" + "amount": 5.46e-05, + "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 2, - "amount": 5.46e-05, - "txid": "f23012376514a8f51a2e08a18e6a3d3c4f1cc34d61e37e5282931d9a612109e6" + "amount": 49.499345, + "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03f4165b3918cd88ea05b219c9f868b57d6d904da5be3da053360be258ef0139f1" + "result": "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010168c1dca088790815d9440f3ed3202ca96829935d5d4fbafd1baa4ba3a514c5ef0100000000ffffffff03e8030000000000001600148463c20478eb8c4d7505c47952663c055439422500000000000000000c6a0a5dbc4e444c8895f99bcddced08270100000016001431beb4e814e8733a24cb4bb6b84dcd898b279b4b0247304402201beacf53d1eb4beaa64f76eeb35851b0b1026eae662b2e4c7b25f653a8ca512a02207c14028ed5ef9c984b157c5cc554ab8e02ec8a6a625d178a73c86ac4f4600dfd012102fa89c64bb5ccf3ece97b15aeef067ec0be07538e53088f9654a4e0aba704801b00000000" + "result": "0200000000010162dd492c370b0b3db90c80467cd473b13a3537582e455584cb23148f21f272580100000000ffffffff03e8030000000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b700000000000000000c6a0a96667af1a04c6c644af8dced0827010000001600147456bd897a33076ce4667b017973899a15be77f60247304402205e33ab76c1c59b0f64afdae48c481b7782b32af7f3344bee338d76268a780b70022049e84e2831027ef76f8fba8f9a2799169ee928de4e38db4372a56702b9a83ab0012102d7f4ece0006152226d7ed234de9a4ead39071a2074bf0931525a3471a13b1d6d00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 61530 @@ -9659,27 +9659,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69 }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "quantity": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, "asset_info": { "divisible": true, @@ -9690,22 +9690,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -9715,22 +9715,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "block_index": 201, - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -9740,30 +9740,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729855738.770461, + "block_time": 1729876077.4463573, "btc_amount": 0, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "destination": "", "fee": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, - "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", + "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -9777,7 +9777,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, @@ -9786,19 +9786,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -9808,7 +9808,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, @@ -9817,27 +9817,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69 }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "quantity": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, "asset_info": { "divisible": true, @@ -9848,22 +9848,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "CREDIT", "params": { - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "asset": "XCP", "block_index": 201, "calling_function": "send", - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -9873,22 +9873,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "asset": "XCP", "block_index": 201, - "event": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "quantity": 10000, "tx_index": 69, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -9898,30 +9898,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 }, { - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729855738.770461, + "block_time": 1729876077.4463573, "btc_amount": 0, - "data": "020000000000000001000000000000271080d983ee3c4c35979315d10bc2fb19b3de2121cbe1", + "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", "destination": "", "fee": 10000, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", - "tx_hash": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", "tx_index": 69, - "utxos_info": "ea9da748be59e821393837870fe63d6b7629bf3c9561923e5d025c5ffd1b46de:1", + "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "memo": null, "asset_info": { "divisible": true, @@ -9935,7 +9935,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729855738.770461 + "timestamp": 1729876077.4463573 } ], "next_cursor": null, @@ -9957,15 +9957,15 @@ "event_index": 590, "event": "NEW_BLOCK", "params": { - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", "block_index": 201, - "block_time": 1729855734, + "block_time": 1729876074, "difficulty": 545259519, - "previous_block_hash": "1424058df64b73521f74d79dbaef74916cd13bc8334551b52a9619fc93c049e4" + "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280" }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 580, @@ -9977,17 +9977,17 @@ "event_index": 591, "event": "NEW_TRANSACTION", "params": { - "block_hash": "355f58e6df4671077ced4541a95ce2f6640f495bf7550d399cef5288c1b08316", + "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", "block_index": 201, - "block_time": 1729855734, + "block_time": 1729876074, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "fee": 0, - "source": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "utxos_info": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1 cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9997,9 +9997,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 582, @@ -10013,16 +10013,16 @@ "params": { "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "out_index": 0, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 558, @@ -10035,15 +10035,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 201, - "ledger_hash": "2e1bcabdd50037f46ddb65504b56131b243064d03b2a0037ed5e3b746b4afc15", - "messages_hash": "6c7289af14d04a88507c8a9baa9da800bd8abfb073e4685fabd860107f3e6b47", + "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", + "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", "transaction_count": 1, - "txlist_hash": "e925699bc2e8b54629b34fe20a5716b20a548f31af045a24749c7df2ac6de623", - "block_time": 1729855734 + "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", + "block_time": 1729876074 }, "tx_hash": null, "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 589, @@ -10056,12 +10056,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68 }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 578, @@ -10077,12 +10077,12 @@ "address": null, "asset": "XCP", "block_index": 201, - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 1500000000, "tx_index": 68, - "utxo": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", - "utxo_address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", - "block_time": 1729855734, + "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -10092,9 +10092,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 593, @@ -10106,16 +10106,16 @@ "event_index": 599, "event": "CREDIT", "params": { - "address": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "asset": "XCP", "block_index": 201, "calling_function": "dispense", - "event": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "quantity": 66, "tx_index": 68, "utxo": null, "utxo_address": null, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -10125,9 +10125,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 597, @@ -10141,14 +10141,14 @@ "params": { "asset": "XCP", "block_index": 189, - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "memo": null, "quantity": 10000, - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "status": "valid", - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", "tx_index": 55, - "block_time": 1729855675, + "block_time": 1729876016, "asset_info": { "divisible": true, "asset_longname": null, @@ -10158,9 +10158,9 @@ }, "quantity_normalized": "0.00010000" }, - "tx_hash": "9ee4bea321a93d97830fc28147c79a0e2bd57cec2f4d3ea12bb6024050fdfed6", + "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", "block_index": 189, - "block_time": 1729855675 + "block_time": 1729876016 } ], "next_cursor": null, @@ -10174,15 +10174,15 @@ "params": { "asset": "XCP", "block_index": 190, - "destination": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "memo": null, "msg_index": 2, "quantity": 10, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "valid", - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "tx_index": 56, - "block_time": 1729855679, + "block_time": 1729876020, "asset_info": { "divisible": true, "asset_longname": null, @@ -10192,9 +10192,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "48ac91ee8c640d46f978c30edc0075e76e9a2149dece55d78bd11739e52cad36", + "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", "block_index": 190, - "block_time": 1729855679 + "block_time": 1729876020 } ], "next_cursor": 509, @@ -10217,20 +10217,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "status": "valid", - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "tx_index": 60, - "block_time": 1729855694, + "block_time": 1729876037, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "ed2fc934ce7265fbcb4a4fdfd15d3a330fbed1b9928efe618506cdda7ea14038", + "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", "block_index": 194, - "block_time": 1729855694 + "block_time": 1729876037 } ], "next_cursor": null, @@ -10247,15 +10247,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "valid", - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "tx_index": 41, - "block_time": 1729855544, + "block_time": 1729875884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10269,9 +10269,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "55c5121df6a698c7cfd72d6554bf41bd3a267a8eb5bfbc121f5651876b3de7ca", + "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", "block_index": 154, - "block_time": 1729855544 + "block_time": 1729875884 } ], "next_cursor": null, @@ -10292,11 +10292,11 @@ "asset_longname": null, "asset_name": "UTXOASSET", "block_index": 198, - "block_time": 1729855708 + "block_time": 1729876053 }, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "block_index": 198, - "block_time": 1729855708 + "block_time": 1729876053 } ], "next_cursor": 394, @@ -10319,22 +10319,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "status": "valid", "transfer": false, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "tx_index": 64, - "block_time": 1729855708, + "block_time": 1729876053, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "6ad6b9599085068cdb686e0eb42218e4a72232c14ef59337524ea47494323eaa", + "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", "block_index": 198, - "block_time": 1729855708 + "block_time": 1729876053 } ], "next_cursor": 395, @@ -10349,12 +10349,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qrlnslnmydkk2stfy2x0qfv7zjz7ya6z95vyw3t", + "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", "status": "valid", "tag": "64657374726f79", - "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "tx_index": 61, - "block_time": 1729855698, + "block_time": 1729876041, "asset_info": { "divisible": true, "asset_longname": null, @@ -10364,9 +10364,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "94124e223c4def819d82aa4dbd87eb4dbbacba7484c952f1fa7bc967722d32a6", + "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", "block_index": 195, - "block_time": 1729855698 + "block_time": 1729876041 } ], "next_cursor": 157, @@ -10391,11 +10391,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "open", - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "tx_index": 59, - "block_time": 1729855691, + "block_time": 1729876032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10419,9 +10419,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "16a27295b0a99da85eec3495cae1708cea3b16a4381eb017e4ef75e772219ade", + "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", "block_index": 193, - "block_time": 1729855691 + "block_time": 1729876032 } ], "next_cursor": 516, @@ -10439,20 +10439,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c", + "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", "tx0_index": 51, - "tx1_address": "bcrt1qmxp7u0zvxktex9w3p0p0kxdnmcsjrjlp740xdt", + "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "tx1_index": 54, - "block_time": 1729855661, + "block_time": 1729876012, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10471,9 +10471,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d5f8721d888924c52d8abe10e09cc4ad7c9d7f1f8a348fed9fa95c36f59b6bf3", + "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", "block_index": 188, - "block_time": 1729855661 + "block_time": 1729876012 } ], "next_cursor": 475, @@ -10486,11 +10486,11 @@ "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b" + "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703" }, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_time": 1729855686 + "block_time": 1729876028 } ], "next_cursor": 490, @@ -10503,11 +10503,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92" + "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21" }, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "block_time": 1729855657 + "block_time": 1729876008 } ], "next_cursor": null, @@ -10519,13 +10519,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", + "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", "status": "completed" }, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "block_time": 1729855657 + "block_time": 1729876008 } ], "next_cursor": 454, @@ -10539,18 +10539,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "order_match_id": "beb5c4f334b5e37959d629d9b9e60fa4bf1554413ea643406783d72b4a590a0c_20a2c926a02dba1e835ed7d7d676982fdb6d418c48b0341d489cb0ecae6e3d92", - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "status": "valid", - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "tx_index": 53, - "block_time": 1729855657, + "block_time": 1729876008, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "3a0dac72a8f3a5ef9c77662085b3ee3394592b9d844c2034e167232e01ba2bc4", + "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", "block_index": 187, - "block_time": 1729855657 + "block_time": 1729876008 } ], "next_cursor": null, @@ -10563,16 +10563,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "8581abc390b52fb63b9c7722b883b8461c7c24a629e8aaa68cdaf1e6f550551b", - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": "valid", - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "tx_index": 58, - "block_time": 1729855686 + "block_time": 1729876028 }, - "tx_hash": "ca3647161bd15b955add2721990994566374e84d300570862566ca705718daa9", + "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", "block_index": 192, - "block_time": 1729855686 + "block_time": 1729876028 } ], "next_cursor": null, @@ -10585,13 +10585,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 184, - "order_hash": "366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "block_time": 1729855589 + "order_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "block_time": 1729875934 }, "tx_hash": null, "block_index": 184, - "block_time": 1729855589 + "block_time": 1729875934 } ], "next_cursor": 460, @@ -10604,14 +10604,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "0425c5c67524e38c18c808744407756272dee90c797fb87c4811cdece687c8f2_366a31285c7c430cfd804992c286e4523b20fd575d3f413eb976b8e24e97bf53", - "tx0_address": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "tx1_address": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", - "block_time": 1729855589 + "order_match_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "block_time": 1729875934 }, "tx_hash": null, "block_index": 184, - "block_time": 1729855589 + "block_time": 1729875934 } ], "next_cursor": null, @@ -10630,17 +10630,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "satoshirate": 1, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "status": 0, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "tx_index": 62, - "block_time": 1729855702, + "block_time": 1729876044, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10649,9 +10649,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a02dfbca0da8886a60392ce3e4f1ed9661bd7da78b26a1dc1dae80917a20e9e1", + "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", "block_index": 196, - "block_time": 1729855702 + "block_time": 1729876044 } ], "next_cursor": 272, @@ -10666,9 +10666,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": 0, - "tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", + "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", "asset_info": { "divisible": true, "asset_longname": null, @@ -10678,9 +10678,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 560, @@ -10694,13 +10694,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mtuR3o5N7Qzrv1S11VysiuhJbA1zDRCvRT", + "destination": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", "dispense_quantity": 10, - "dispenser_tx_hash": "7614464e84a9e952715fd1bc87e68dfd6f25d0d4af8fbb0e6b2ec9ae5a5ba8ce", - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", - "tx_hash": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", + "dispenser_tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", "tx_index": 31, - "block_time": 1729855485, + "block_time": 1729875848, "asset_info": { "divisible": true, "asset_longname": null, @@ -10710,9 +10710,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "986ce321953a331c671d7d15450b6ce84aa0ccf4a3fb0fac52d572ed0e3a2f51", + "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", "block_index": 144, - "block_time": 1729855485 + "block_time": 1729875848 } ], "next_cursor": null, @@ -10727,14 +10727,14 @@ "asset": "XCP", "block_index": 201, "btc_amount": 1000, - "destination": "bcrt1qxxltf6q5apen5fxtfwmtsnwd3x9j0x6tfhljvr", + "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "9de064680d997e9c5438de3bc15995471bfb4c65304f0f7b928c8a947823d9be", - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -10745,9 +10745,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 561, @@ -10762,19 +10762,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qs33uyprcawxy6ag9c3u4ye3uq42rjs392wzkyv", + "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "tx_index": 25, "value": 66600.0, - "block_time": 1729855452, + "block_time": 1729875826, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "e6d75452f36a002a15f3734d126926e350a96977fb164a39ec47dc5319fef076", + "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", "block_index": 138, - "block_time": 1729855452 + "block_time": 1729875826 } ], "next_cursor": 213, @@ -10805,12 +10805,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "start_block": 0, "status": "open", - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "tx_index": 42, - "block_time": 1729855547, + "block_time": 1729875887, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10818,9 +10818,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "b1680b8c94c18580ca8f95f4d561c1f74519cd2edab4f80c55ab12d5e93da60b", + "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", "block_index": 155, - "block_time": 1729855547 + "block_time": 1729875887 } ], "next_cursor": 196, @@ -10833,11 +10833,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "3fa44bca4f49e17e1667a0be0e4e1104c0c03eb2c3fbbd170bcc8d6d8f28dfb6" + "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe" }, "tx_hash": null, "block_index": 130, - "block_time": 1729855421 + "block_time": 1729875786 } ], "next_cursor": 110, @@ -10853,17 +10853,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "dbec231e540fe97e229471409f34f6ab6e8708789268a23fffc21325e7f70538", + "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", "paid_quantity": 34, - "source": "bcrt1qjrc4emv5wq8nzans6lvj86vxu2nwtqy26vrlxn", + "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", "status": "valid", - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "tx_index": 23, - "block_time": 1729855445, + "block_time": 1729875818, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, @@ -10871,9 +10871,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "b65896cc00eefdb45eef709877d689b7e0e899960f5467d0e6b15bcc71e2127f", + "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", "block_index": 136, - "block_time": 1729855445 + "block_time": 1729875818 } ], "next_cursor": 190, @@ -10887,28 +10887,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016:1", + "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "status": "valid", - "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", "tx_index": 65, - "block_time": 1729855711, + "block_time": 1729876056, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qscy8wznyq65200k2gh2p2sx9yeu5qruywfk3vl", + "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "fe51d01581404906b7a121048982e1f4f331d4dd1141ab2ed1f0ebdba87fb016", + "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", "block_index": 199, - "block_time": 1729855711 + "block_time": 1729876056 } ], "next_cursor": 319, @@ -10922,28 +10922,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qrxnedhls5yn7yqhema2g466494sx45m8ujw736", + "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "8fb99575a9804b4f0305b5b774738d2867e95399ce4e9c049574f76f218393db:0", + "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", "status": "valid", - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "tx_index": 38, - "block_time": 1729855532, + "block_time": 1729875873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1qdp5st9fjvy6zxdlswq6gjk3p3etqk292wkdnd5", + "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "879334f59af8bc2406543d51c7f1659abde3192d6e5b1f0e82d24fc686952a9a", + "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", "block_index": 151, - "block_time": 1729855532 + "block_time": 1729875873 } ], "next_cursor": null, @@ -10957,14 +10957,14 @@ "params": { "asset": "XCP", "block_index": 201, - "destination": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694:0", + "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", "msg_index": 1, "quantity": 1500000000, - "source": "efc514a5a34baa1bfdba4f5d5d932968a92c20d33e0f44d915087988a0dcc168:1", + "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", "status": "valid", - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "tx_index": 68, - "block_time": 1729855734, + "block_time": 1729876074, "asset_info": { "divisible": true, "asset_longname": null, @@ -10974,9 +10974,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "cae23192165011bad1f6838c8e2307a95ffd24c663086d3ab1d3c929272ee694", + "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", "block_index": 201, - "block_time": 1729855734 + "block_time": 1729876074 } ], "next_cursor": 595, @@ -10991,17 +10991,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qz6xn49wepnju2qekfp2pj2mt3dzmmwefs7gm7m", + "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", "status": "valid", - "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", + "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", "tx_index": 9, - "block_time": 1729855388, + "block_time": 1729875752, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "b5d1b56132c4b58ab722a94f0f9fcb4491ca3dd1024fed2532a21d6247e627e5", + "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", "block_index": 121, - "block_time": 1729855388 + "block_time": 1729875752 } ], "next_cursor": 65, diff --git a/release-notes/release-notes-v10.6.0.md b/release-notes/release-notes-v10.6.0.md index 08d5192f27..789252600a 100644 --- a/release-notes/release-notes-v10.6.0.md +++ b/release-notes/release-notes-v10.6.0.md @@ -46,6 +46,7 @@ This release also includes a bugfix for chained UTXO movements within the same b - Have `/v2/addresses/
/sweeps` now also search by the `destination` field - Add `asset_events` argument for Issuances routes - Raise an error on `fairmint.compose()` when the fairminter is free and the quantity is not zero +- Add `get_asset` and `give_asset` arguments for `/v2/orders` route ## CLI From 180797b171448cd16a913e877f6c2cfab08df62d Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Fri, 25 Oct 2024 13:21:18 -0400 Subject: [PATCH 69/71] Tweak Release Notes for v10.6.0 --- release-notes/release-notes-v10.6.0.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release-notes/release-notes-v10.6.0.md b/release-notes/release-notes-v10.6.0.md index 789252600a..5ec8844a02 100644 --- a/release-notes/release-notes-v10.6.0.md +++ b/release-notes/release-notes-v10.6.0.md @@ -11,7 +11,7 @@ This release is a protocol change from mainnet block 868,200 (in about one week) This release also includes a bugfix for chained UTXO movements within the same block. This bugfix requires an automatic reparse starting from block 867000. Given the current slowdowns in catching up with the API database, we recommend using `counterparty-server bootstrap` before restarting your server. -*IMPORTANT* All wallets should use the `compose_dispense()` call to trigger dispenses rather than the legacy `create_send()`. Due to the above bug, using `create_send()` can make it possible for users to send BTC to an address where the dispenser will fail. All node hosts should migrate to `compose_dispense()` ASAP. +*IMPORTANT* All wallets should use the `compose_dispense()` call to trigger dispenses rather than the legacy `create_send()`. Due to the above bug, using `create_send()` can make it possible for users to send BTC to an address where the dispense will fail. All node hosts should migrate to `compose_dispense()` as soon as possible. # ChangeLog @@ -26,7 +26,7 @@ This release also includes a bugfix for chained UTXO movements within the same b - Run reparse only if necessary - Fix `message_data` when retrieving information about fairminter or fairmint transactions - Use `threading.Event()` to cleanly stop threads and subprocesses started by `counterparty-server` -- Don't update UTXOs balances cache on mempool transaction +- Don't update UTXOs balances cache on mempool transactions - Update UTXOs balances cache before transacation parsing to catch chained UTXO moves in the same block ## Codebase @@ -46,7 +46,7 @@ This release also includes a bugfix for chained UTXO movements within the same b - Have `/v2/addresses/
/sweeps` now also search by the `destination` field - Add `asset_events` argument for Issuances routes - Raise an error on `fairmint.compose()` when the fairminter is free and the quantity is not zero -- Add `get_asset` and `give_asset` arguments for `/v2/orders` route +- Add `get_asset` and `give_asset` arguments for the `/v2/orders` route ## CLI From 410c196413091010f6d7f0c3a60144716014eecb Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 25 Oct 2024 17:23:40 +0000 Subject: [PATCH 70/71] Fix --bootstrap-url flag with start command --- counterparty-core/counterpartycore/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 5861a68772..266a8d7069 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -745,7 +745,7 @@ def handle_interrupt_signal(signum, frame): if ( not os.path.exists(config.DATABASE) and args.catch_up == "bootstrap" ) or args.catch_up == "bootstrap-always": - bootstrap(no_confirm=True) + bootstrap(no_confirm=True, snapshot_url=args.bootstrap_url) # Initialise database db = database.initialise_db() From 370ed99155a339dc76a6ed990c51212dc34c521f Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Fri, 25 Oct 2024 13:23:46 -0400 Subject: [PATCH 71/71] Move Protocol Change Back 100 Blocks --- counterparty-core/counterpartycore/protocol_changes.json | 2 +- release-notes/release-notes-v10.6.0.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/counterparty-core/counterpartycore/protocol_changes.json b/counterparty-core/counterpartycore/protocol_changes.json index 31037e660d..9ff7e587a2 100644 --- a/counterparty-core/counterpartycore/protocol_changes.json +++ b/counterparty-core/counterpartycore/protocol_changes.json @@ -642,7 +642,7 @@ "minimum_version_major": 10, "minimum_version_minor": 6, "minimum_version_revision": 0, - "block_index": 868200, + "block_index": 868300, "testnet_block_index": 3195137 } } diff --git a/release-notes/release-notes-v10.6.0.md b/release-notes/release-notes-v10.6.0.md index 5ec8844a02..82f315584d 100644 --- a/release-notes/release-notes-v10.6.0.md +++ b/release-notes/release-notes-v10.6.0.md @@ -5,7 +5,7 @@ This release includes a protocol change to fix a regression for the case when th # Upgrading -This release is a protocol change from mainnet block 868,200 (in about one week). It also includes a backwards-incompatible change in the API: +This release is a protocol change from mainnet block 868,300 (in about six days). It also includes a backwards-incompatible change in the API: - `/v2/addresses/
/balances/` and `/v2/assets//balances/
` now return a list that may include balances attached to UTXOs of `
`. @@ -18,7 +18,7 @@ This release also includes a bugfix for chained UTXO movements within the same b ## Protocol Changes -- Block 868200: Dispenses are now triggered if *at least* one dispenser on the address is valid rather than only if all of them are valid. +- Block 868300: Dispenses are now triggered if *at least* one dispenser on the address is valid rather than only if all of them are valid. ## Bugfixes